summaryrefslogtreecommitdiff
path: root/db/migrate/20170824162758_allow_appearances_description_html_null.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170824162758_allow_appearances_description_html_null.rb')
-rw-r--r--db/migrate/20170824162758_allow_appearances_description_html_null.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/migrate/20170824162758_allow_appearances_description_html_null.rb b/db/migrate/20170824162758_allow_appearances_description_html_null.rb
deleted file mode 100644
index 6efa3452796..00000000000
--- a/db/migrate/20170824162758_allow_appearances_description_html_null.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AllowAppearancesDescriptionHtmlNull < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- def up
- change_column_null :appearances, :description_html, true
- end
-
- def down
- # This column should not have a `NOT NULL` class, so we don't want to revert
- # back to re-adding it.
- end
-end