Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150211172122_add_template_to_service.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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