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: eed6d1f236aa16cc8032c94c01ecf57ae4f4d16b (plain)
1
2
3
4
5
class AddDescriptionToLabel < ActiveRecord::Migration
  def change
    add_column :labels, :description, :string
  end
end