summaryrefslogtreecommitdiff
path: root/db/migrate/20160919144305_add_type_to_labels.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160919144305_add_type_to_labels.rb')
-rw-r--r--db/migrate/20160919144305_add_type_to_labels.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20160919144305_add_type_to_labels.rb b/db/migrate/20160919144305_add_type_to_labels.rb
deleted file mode 100644
index f897646d264..00000000000
--- a/db/migrate/20160919144305_add_type_to_labels.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# rubocop:disable Migration/UpdateColumnInBatches
-class AddTypeToLabels < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = true
- DOWNTIME_REASON = 'Labels will not work as expected until this migration is complete.'
-
- disable_ddl_transaction!
-
- def change
- add_column :labels, :type, :string
-
- update_column_in_batches(:labels, :type, 'ProjectLabel') do |table, query|
- query.where(table[:project_id].not_eq(nil))
- end
- end
-end