summaryrefslogtreecommitdiff
path: root/db/migrate/markdown_cache_limits_to_mysql.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/markdown_cache_limits_to_mysql.rb')
-rw-r--r--db/migrate/markdown_cache_limits_to_mysql.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/markdown_cache_limits_to_mysql.rb b/db/migrate/markdown_cache_limits_to_mysql.rb
deleted file mode 100644
index f99d500a137..00000000000
--- a/db/migrate/markdown_cache_limits_to_mysql.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class MarkdownCacheLimitsToMysql < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def up
- return unless Gitlab::Database.mysql?
-
- change_column :snippets, :content_html, :text, limit: 2147483647
- end
-
- def down
- # no-op
- end
-end