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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarin Jankovski <maxlazio@gmail.com>2015-02-11 20:24:40 +0300
committerMarin Jankovski <maxlazio@gmail.com>2015-02-11 20:24:40 +0300
commit55153660647741af22be2278d292de8a54bc0402 (patch)
tree108225eae9e7f2ebef901e6df83e52e667774335 /db/migrate
parent29e606deeca83c41d72f880d9574af5983686ab3 (diff)
Add template boolean to services.
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20150211172122_add_template_to_service.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20150211172122_add_template_to_service.rb b/db/migrate/20150211172122_add_template_to_service.rb
new file mode 100644
index 00000000000..b1bfbc45ee9
--- /dev/null
+++ b/db/migrate/20150211172122_add_template_to_service.rb
@@ -0,0 +1,5 @@
+class AddTemplateToService < ActiveRecord::Migration
+ def change
+ add_column :services, :template, :boolean, default: false
+ end
+end