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: b1bfbc45ee9ab36c5f48a69d16e868e6f3c7ca56 (plain)
1
2
3
4
5
class AddTemplateToService < ActiveRecord::Migration
  def change
    add_column :services, :template, :boolean, default: false
  end
end