mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 11:29:06 +01:00
Appease the dog overlords
This commit is contained in:
parent
a74f40ecfc
commit
9b5470cfd3
2 changed files with 5 additions and 1 deletions
|
@ -8,7 +8,11 @@ class Answer < ApplicationRecord
|
||||||
has_many :subscriptions, dependent: :destroy
|
has_many :subscriptions, dependent: :destroy
|
||||||
has_many :comment_smiles, through: :comments, source: :smiles
|
has_many :comment_smiles, through: :comments, source: :smiles
|
||||||
|
|
||||||
|
# rubocop:disable Rails/UniqueValidationWithoutIndex
|
||||||
|
# This cop is disabled here because there already are questions with
|
||||||
|
# multiple answers. Adding an index would break things database-side
|
||||||
validates :question_id, uniqueness: { scope: :user_id }
|
validates :question_id, uniqueness: { scope: :user_id }
|
||||||
|
# rubocop:enable Rails/UniqueValidationWithoutIndex
|
||||||
|
|
||||||
# rubocop:disable Rails/SkipsModelValidations
|
# rubocop:disable Rails/SkipsModelValidations
|
||||||
after_create do
|
after_create do
|
||||||
|
|
Loading…
Reference in a new issue