debian-mirror-gitlab/db/migrate/gpg_keys_limits_to_mysql.rb
2018-11-18 11:00:15 +05:30

15 lines
310 B
Ruby

class IncreaseMysqlTextLimitForGpgKeys < ActiveRecord::Migration
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def up
return unless Gitlab::Database.mysql?
change_column :gpg_keys, :key, :text, limit: 16.megabytes - 1
end
def down
# no-op
end
end