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
path: root/db
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-09-24 14:07:18 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2018-10-02 18:04:04 +0300
commit422970c93eb0ff445da5c3351cdfd70bb387e57c (patch)
tree56a79d5f23f023d060488bb600fca03f1c6f65c7 /db
parent703a41f8862c7278559ff13f2aa4f39ffd660c4e (diff)
Remove unnecessary table
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/db/schema.rb b/db/schema.rb
index ff45c9effc6..b55a9badc6b 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -260,13 +260,6 @@ ActiveRecord::Schema.define(version: 20180924201039) do
add_index "chat_teams", ["namespace_id"], name: "index_chat_teams_on_namespace_id", unique: true, using: :btree
- create_table "ci_build_schedules", id: :bigserial, force: :cascade do |t|
- t.integer "build_id", null: false
- t.datetime "execute_at", null: false
- end
-
- add_index "ci_build_schedules", ["build_id"], name: "index_ci_build_schedules_on_build_id", unique: true, using: :btree
-
create_table "ci_build_trace_chunks", id: :bigserial, force: :cascade do |t|
t.integer "build_id", null: false
t.integer "chunk_index", null: false
@@ -2298,7 +2291,6 @@ ActiveRecord::Schema.define(version: 20180924201039) do
add_foreign_key "boards", "namespaces", column: "group_id", on_delete: :cascade
add_foreign_key "boards", "projects", name: "fk_f15266b5f9", on_delete: :cascade
add_foreign_key "chat_teams", "namespaces", on_delete: :cascade
- add_foreign_key "ci_build_schedules", "ci_builds", column: "build_id", on_delete: :cascade
add_foreign_key "ci_build_trace_chunks", "ci_builds", column: "build_id", on_delete: :cascade
add_foreign_key "ci_build_trace_section_names", "projects", on_delete: :cascade
add_foreign_key "ci_build_trace_sections", "ci_build_trace_section_names", column: "section_name_id", name: "fk_264e112c66", on_delete: :cascade