0
0
Fork 0

Change belongs_to_required_by_default to true (#5888)

This commit is contained in:
Yamagishi Kazutoshi 2018-01-20 04:56:47 +09:00 committed by Eugen Rochko
parent 7233ac07d2
commit 238de58e65
23 changed files with 52 additions and 50 deletions

View file

@ -19,7 +19,7 @@ class Subscription < ApplicationRecord
MIN_EXPIRATION = 1.day.to_i
MAX_EXPIRATION = 30.days.to_i
belongs_to :account, required: true
belongs_to :account
validates :callback_url, presence: true
validates :callback_url, uniqueness: { scope: :account_id }