Reset model in migration after removing column (#24250)

th-downstream
Matt Jankowski 2 years ago committed by GitHub
parent 0663803348
commit 3557a65bb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,6 +34,7 @@ class RemoveSuspendedSilencedAccountFields < ActiveRecord::Migration[5.2]
remove_column :accounts, :suspended, :boolean, null: false, default: false
remove_column :accounts, :silenced, :boolean, null: false, default: false
end
Account.reset_column_information
end
def down

Loading…
Cancel
Save