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: 0f6ae8d6cc3ea23d076a32de2874910ba0411d98 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTemplateToLabel < ActiveRecord::Migration
  def change
    add_column :labels, :template, :boolean, default: false
  end
end