From 8394452bae5a4540c701588e208d3299054539cf Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Fri, 17 May 2019 13:56:43 -0500 Subject: fix schema --- app/models/account.rb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'app/models') diff --git a/app/models/account.rb b/app/models/account.rb index d939909eb..6379a5031 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -25,8 +25,6 @@ # header_file_size :integer # header_updated_at :datetime # avatar_remote_url :string -# silenced :boolean default(FALSE), not null -# suspended :boolean default(FALSE), not null # locked :boolean default(FALSE), not null # header_remote_url :string default(""), not null # last_webfingered_at :datetime @@ -41,9 +39,6 @@ # actor_type :string # discoverable :boolean # also_known_as :string is an Array -# silenced_at :datetime -# suspended_at :datetime -# hidden :boolean # hidden :boolean default(FALSE), not null # vars :jsonb not null # replies :boolean default(TRUE), not null @@ -51,6 +46,8 @@ # force_unlisted :boolean default(FALSE), not null # force_sensitive :boolean default(FALSE), not null # adults_only :boolean default(FALSE), not null +# silenced_at :datetime +# suspended_at :datetime # class Account < ApplicationRecord -- cgit