about summary refs log tree commit diff
path: root/db/migrate/20171005171936_add_disabled_to_custom_emojis.rb
blob: 067a7bee0cc37f8ee3b197d19e88b2955e0080b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require Rails.root.join('lib', 'mastodon', 'migration_helpers')

class AddDisabledToCustomEmojis < ActiveRecord::Migration[5.1]
  include Mastodon::MigrationHelpers

  disable_ddl_transaction!

  def up
    safety_assured { add_column_with_default :custom_emojis, :disabled, :bool, default: false }
  end

  def down
    remove_column :custom_emojis, :disabled
  end
end