1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-25 07:37:08 +09:00
whippy-edition/db/migrate/20161205214545_add_suspended_to_accounts.rb

6 lines
159 B
Ruby
Raw Normal View History

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