about summary refs log tree commit diff
path: root/app/models/list_account.rb
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2018-01-20 04:56:47 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-01-19 20:56:47 +0100
commit238de58e652c99c331d0bdf8e4791abace02fb0e (patch)
tree9d0b26f76890601d3ab274f96a191a0e656de4a3 /app/models/list_account.rb
parent7233ac07d2f182969def963bf25aa2fc705f434c (diff)
Change belongs_to_required_by_default to true (#5888)
Diffstat (limited to 'app/models/list_account.rb')
-rw-r--r--app/models/list_account.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/list_account.rb b/app/models/list_account.rb
index 253932590..da46cf032 100644
--- a/app/models/list_account.rb
+++ b/app/models/list_account.rb
@@ -10,9 +10,9 @@
 #
 
 class ListAccount < ApplicationRecord
-  belongs_to :list, required: true
-  belongs_to :account, required: true
-  belongs_to :follow, required: true
+  belongs_to :list
+  belongs_to :account
+  belongs_to :follow
 
   validates :account_id, uniqueness: { scope: :list_id }