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.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20160919144305_add_type_to_labels.rb b/db/migrate/20160919144305_add_type_to_labels.rb
new file mode 100644
index 00000000000..66172bda6ff
--- /dev/null
+++ b/db/migrate/20160919144305_add_type_to_labels.rb
@@ -0,0 +1,14 @@
+class AddTypeToLabels < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = true
+ DOWNTIME_REASON = 'Labels will not work as expected until this migration is complete.'
+
+ 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