20200312144258_add_title_to_account_warning_presets.rb 440 B

1234567891011121314151617
  1. # frozen_string_literal: true
  2. require Rails.root.join('lib', 'mastodon', 'migration_helpers')
  3. class AddTitleToAccountWarningPresets < ActiveRecord::Migration[5.2]
  4. include Mastodon::MigrationHelpers
  5. disable_ddl_transaction!
  6. def up
  7. safety_assured { add_column_with_default :account_warning_presets, :title, :string, default: '', allow_null: false }
  8. end
  9. def down
  10. remove_column :account_warning_presets, :title
  11. end
  12. end