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: bd381a97b6939bf1a1916cfef767b563fb976323 (plain)
1
2
3
4
5
class AddTemplateToLabel < ActiveRecord::Migration
  def change
    add_column :labels, :template, :boolean, default: false
  end
end