summaryrefslogtreecommitdiff
path: root/db/migrate/20180531220618_change_default_value_for_dsa_key_restriction.rb
blob: cf621c46f2b4f3e97105cf7c68ced8cd08d65feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class ChangeDefaultValueForDsaKeyRestriction < ActiveRecord::Migration[4.2]
  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  def up
    change_column :application_settings, :dsa_key_restriction, :integer, null: false,
                                                                         default: -1

    execute("UPDATE application_settings SET dsa_key_restriction = -1")
  end

  def down
    change_column :application_settings, :dsa_key_restriction, :integer, null: false,
                                                                         default: 0
  end
end