summaryrefslogtreecommitdiff
path: root/db/migrate/20161018024550_remove_priority_from_labels.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20161018024550_remove_priority_from_labels.rb')
-rw-r--r--db/migrate/20161018024550_remove_priority_from_labels.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20161018024550_remove_priority_from_labels.rb b/db/migrate/20161018024550_remove_priority_from_labels.rb
new file mode 100644
index 00000000000..b7416cca664
--- /dev/null
+++ b/db/migrate/20161018024550_remove_priority_from_labels.rb
@@ -0,0 +1,17 @@
+class RemovePriorityFromLabels < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = true
+ DOWNTIME_REASON = 'This migration removes an existing column'
+
+ disable_ddl_transaction!
+
+ def up
+ remove_column :labels, :priority, :integer, index: true
+ end
+
+ def down
+ add_column :labels, :priority, :integer
+ add_concurrent_index :labels, :priority
+ end
+end