summaryrefslogtreecommitdiff
path: root/db/migrate/20170222143317_drop_ci_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170222143317_drop_ci_projects.rb')
-rw-r--r--db/migrate/20170222143317_drop_ci_projects.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/db/migrate/20170222143317_drop_ci_projects.rb b/db/migrate/20170222143317_drop_ci_projects.rb
deleted file mode 100644
index 9f3aa2da382..00000000000
--- a/db/migrate/20170222143317_drop_ci_projects.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-class DropCiProjects < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- drop_table :ci_projects
- end
-
- def down
- create_table "ci_projects", force: :cascade do |t|
- t.string "name"
- t.integer "timeout", default: 3600, null: false
- t.datetime "created_at"
- t.datetime "updated_at"
- t.string "token"
- t.string "default_ref"
- t.string "path"
- t.boolean "always_build", default: false, null: false
- t.integer "polling_interval"
- t.boolean "public", default: false, null: false
- t.string "ssh_url_to_repo"
- t.integer "gitlab_id"
- t.boolean "allow_git_fetch", default: true, null: false
- t.string "email_recipients", default: "", null: false
- t.boolean "email_add_pusher", default: true, null: false
- t.boolean "email_only_broken_builds", default: true, null: false
- t.string "skip_refs"
- t.string "coverage_regex"
- t.boolean "shared_runners_enabled", default: false
- t.text "generated_yaml_config"
- end
- end
-end