This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/db/migrate/20161205214545_add_suspended_to_accounts.rb

6 lines
159 B
Ruby
Raw Normal View History

2016-12-05 21:59:30 +00:00
class AddSuspendedToAccounts < ActiveRecord::Migration[5.0]
def change
add_column :accounts, :suspended, :boolean, null: false, default: false
end
end