gitlab-org--gitlab-foss/db/migrate/20150211172122_add_template...

7 lines
160 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-02-11 17:24:40 +00:00
class AddTemplateToService < ActiveRecord::Migration
def change
add_column :services, :template, :boolean, default: false
end
end