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