summaryrefslogtreecommitdiff
path: root/db/migrate/20150902001023_add_template_to_label.rb
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