1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20161205214545_add_suspended_to_accounts.rb

8 lines
190 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-12-05 13:59:30 -08:00
class AddSuspendedToAccounts < ActiveRecord::Migration[5.0]
def change
add_column :accounts, :suspended, :boolean, null: false, default: false
end
end