gitlab-org--gitlab-foss/db/migrate/20160217100506_add_description_to_label.rb
Tap 2e81b1558b Label description and Label row
- Add label description
- Show label row when filtering issues or merge requests by label
2016-02-17 21:52:12 +08:00

5 lines
123 B
Ruby

class AddDescriptionToLabel < ActiveRecord::Migration
def change
add_column :labels, :description, :string
end
end