about summary refs log tree commit diff
path: root/app/models/mute.rb
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2017-11-17 17:41:15 -0600
committerDavid Yip <yipdw@member.fsf.org>2017-11-17 17:41:15 -0600
commit130aa90d5500f481c181a16012724b5f81d62616 (patch)
tree739fe0417fce9b9f48f924815b436a50b324dfe9 /app/models/mute.rb
parent1ab12ba38ebd42be93b63b7cf0d3c6a81060b741 (diff)
Update annotations on Follow, FollowRequest, and Mute.
Follow and FollowRequest had conflicts in their schema annotations, so I
ran latest migrations and let annotate_models fix them up.
Diffstat (limited to 'app/models/mute.rb')
-rw-r--r--app/models/mute.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/mute.rb b/app/models/mute.rb
index 74b445c0b..ca984641a 100644
--- a/app/models/mute.rb
+++ b/app/models/mute.rb
@@ -3,12 +3,12 @@
 #
 # Table name: mutes
 #
-#  id                 :bigint          not null, primary key
+#  id                 :integer          not null, primary key
 #  created_at         :datetime         not null
 #  updated_at         :datetime         not null
-#  account_id         :bigint          not null
-#  target_account_id  :bigint          not null
 #  hide_notifications :boolean          default(TRUE), not null
+#  account_id         :integer          not null
+#  target_account_id  :integer          not null
 #
 
 class Mute < ApplicationRecord