1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 07:06:34 +09:00
YuruToot/db/migrate/20161205214545_add_suspended_to_accounts.rb
2016-12-05 22:59:30 +01:00

6 lines
159 B
Ruby

class AddSuspendedToAccounts < ActiveRecord::Migration[5.0]
def change
add_column :accounts, :suspended, :boolean, null: false, default: false
end
end