1
0
mirror of https://github.com/Siphonay/mastodon synced 2025-02-12 12:24:46 +00:00
donphan/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