Change belongs_to_required_by_default to true (#5888)
This commit is contained in:
parent
7233ac07d2
commit
238de58e65
23 changed files with 52 additions and 50 deletions
|
@ -50,8 +50,8 @@ class User < ApplicationRecord
|
|||
devise :registerable, :recoverable, :rememberable, :trackable, :validatable,
|
||||
:confirmable
|
||||
|
||||
belongs_to :account, inverse_of: :user, required: true
|
||||
belongs_to :invite, counter_cache: :uses
|
||||
belongs_to :account, inverse_of: :user
|
||||
belongs_to :invite, counter_cache: :uses, optional: true
|
||||
accepts_nested_attributes_for :account
|
||||
|
||||
has_many :applications, class_name: 'Doorkeeper::Application', as: :owner
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue