mastodon/db/migrate/20161205214545_add_suspende...

8 lines
190 B
Ruby
Raw Permalink Normal View History

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