2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-08 05:06:44 +11:00
|
|
|
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
|
2023-03-28 01:09:10 +11:00
|
|
|
class AddDisabledToUsers < ActiveRecord::Migration[5.2]
|
2017-11-08 05:06:44 +11:00
|
|
|
include Mastodon::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
safety_assured { add_column_with_default :users, :disabled, :bool, default: false }
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :users, :disabled
|
|
|
|
end
|
|
|
|
end
|