summaryrefslogtreecommitdiff
path: root/db/migrate/20151210125928_add_ci_to_project.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20151210125928_add_ci_to_project.rb')
-rw-r--r--db/migrate/20151210125928_add_ci_to_project.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrate/20151210125928_add_ci_to_project.rb b/db/migrate/20151210125928_add_ci_to_project.rb
deleted file mode 100644
index 182f1e17b9a..00000000000
--- a/db/migrate/20151210125928_add_ci_to_project.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-# rubocop:disable all
-class AddCiToProject < ActiveRecord::Migration[4.2]
- def change
- add_column :projects, :ci_id, :integer
- add_column :projects, :builds_enabled, :boolean, default: true, null: false
- add_column :projects, :shared_runners_enabled, :boolean, default: true, null: false
- add_column :projects, :runners_token, :string
- add_column :projects, :build_coverage_regex, :string
- add_column :projects, :build_allow_git_fetch, :boolean, default: true, null: false
- add_column :projects, :build_timeout, :integer, default: 3600, null: false
- end
-end