summaryrefslogtreecommitdiff
path: root/db/migrate/20160919144305_add_type_to_labels.rb
blob: 43aac7846d3795fa763182227402442df5252f78 (plain)
1
2
3
4
5
6
7
8
9
class AddTypeToLabels < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :labels, :type, :string
  end
end