logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

20171107143332_add_memorial_to_accounts.rb (357B)


  1. require Rails.root.join('lib', 'mastodon', 'migration_helpers')
  2. class AddMemorialToAccounts < ActiveRecord::Migration[5.1]
  3. include Mastodon::MigrationHelpers
  4. disable_ddl_transaction!
  5. def up
  6. safety_assured { add_column_with_default :accounts, :memorial, :bool, default: false }
  7. end
  8. def down
  9. remove_column :accounts, :memorial
  10. end
  11. end