Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160217100506_add_description_to_label.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af5af1674706b5c51a571841b34a2432723764e8 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddDescriptionToLabel < ActiveRecord::Migration
  def change
    add_column :labels, :description, :string
  end
end