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