summaryrefslogtreecommitdiff
path: root/db/migrate/gpg_keys_limits_to_mysql.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/gpg_keys_limits_to_mysql.rb')
-rw-r--r--db/migrate/gpg_keys_limits_to_mysql.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/db/migrate/gpg_keys_limits_to_mysql.rb b/db/migrate/gpg_keys_limits_to_mysql.rb
deleted file mode 100644
index 2cd347a0463..00000000000
--- a/db/migrate/gpg_keys_limits_to_mysql.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class IncreaseMysqlTextLimitForGpgKeys < ActiveRecord::Migration[4.2]
- # 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