summaryrefslogtreecommitdiff
path: root/db/migrate/20150211172122_add_template_to_service.rb
blob: a3e96b25c567d450ff50a5b113d532f6dc1b527e (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTemplateToService < ActiveRecord::Migration
  def change
    add_column :services, :template, :boolean, default: false
  end
end