~cytrogen/masto-fe

ref: cbdb25ab0343603165fc89fd28b07c9ca0f2ae6d masto-fe/db/migrate/20171107143624_add_disabled_to_users.rb -rw-r--r-- 348 bytes
cbdb25ab — Claire Merge pull request #2151 from ClearlyClaire/glitch-soc/main 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require Rails.root.join('lib', 'mastodon', 'migration_helpers')

class AddDisabledToUsers < ActiveRecord::Migration[5.1]
  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