~cytrogen/masto-fe

ref: 9e59186f78a1b170d4d15197a4bb439f66fd7e8f masto-fe/db/migrate/20171107143332_add_memorial_to_accounts.rb -rw-r--r-- 357 bytes
9e59186f — dependabot[bot] Bump glob from 10.2.2 to 10.2.6 (#25083) 2 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 AddMemorialToAccounts < ActiveRecord::Migration[5.2]
  include Mastodon::MigrationHelpers

  disable_ddl_transaction!

  def up
    safety_assured { add_column_with_default :accounts, :memorial, :bool, default: false }
  end

  def down
    remove_column :accounts, :memorial
  end
end