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.
This commit is contained in:
David Yip
2017-11-17 17:41:15 -06:00
parent 1ab12ba38e
commit 130aa90d55
4 changed files with 7 additions and 10 deletions

View File

@ -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