1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-31 12:03:10 -05:00
tootlab-mastodon/db/migrate/20161205214545_add_suspended_to_accounts.rb

6 lines
159 B
Ruby
Raw Normal View History

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