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

20150902001023_add_template_to_label.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10769f29baae38491e91fc4c3b40b2316a3d40ff (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTemplateToLabel < ActiveRecord::Migration[4.2]
  def change
    add_column :labels, :template, :boolean, default: false
  end
end