gitlab-org--gitlab-foss/db/migrate/20160919144305_add_type_to_...

10 lines
176 B
Ruby
Raw Normal View History

2016-09-19 15:04:38 +00:00
class AddTypeToLabels < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :labels, :type, :string
end
end