From 6763d2787670bc03a36a8eb601703e88fc70dece Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 18 Mar 2020 09:09:31 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- db/schema.rb | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index 55c99cb1027..1e32f4e6bd4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -738,6 +738,18 @@ ActiveRecord::Schema.define(version: 2020_03_13_123934) do t.index ["build_id"], name: "index_ci_builds_runner_session_on_build_id", unique: true end + create_table "ci_daily_report_results", force: :cascade do |t| + t.date "date", null: false + t.bigint "project_id", null: false + t.bigint "last_pipeline_id", null: false + t.float "value", null: false + t.bigint "param_type", null: false + t.string "ref_path", null: false + t.string "title", null: false + t.index ["last_pipeline_id"], name: "index_ci_daily_report_results_on_last_pipeline_id" + t.index ["project_id", "ref_path", "param_type", "date", "title"], name: "index_daily_report_results_unique_columns", unique: true + end + create_table "ci_group_variables", id: :serial, force: :cascade do |t| t.string "key", null: false t.text "value" @@ -4419,9 +4431,8 @@ ActiveRecord::Schema.define(version: 2020_03_13_123934) do t.index ["name"], name: "index_users_on_name_trigram", opclass: :gin_trgm_ops, using: :gin t.index ["public_email"], name: "index_users_on_public_email", where: "((public_email)::text <> ''::text)" t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true + t.index ["state", "user_type"], name: "index_users_on_state_and_user_type_internal", where: "(ghost IS NOT TRUE)" t.index ["state"], name: "index_users_on_state" - t.index ["state"], name: "index_users_on_state_and_internal", where: "(ghost IS NOT TRUE)" - t.index ["state"], name: "index_users_on_state_and_internal_ee", where: "((ghost IS NOT TRUE) AND (bot_type IS NULL))" t.index ["static_object_token"], name: "index_users_on_static_object_token", unique: true t.index ["unconfirmed_email"], name: "index_users_on_unconfirmed_email", where: "(unconfirmed_email IS NOT NULL)" t.index ["user_type"], name: "index_users_on_user_type" @@ -4765,6 +4776,8 @@ ActiveRecord::Schema.define(version: 2020_03_13_123934) do add_foreign_key "ci_builds_metadata", "ci_builds", column: "build_id", on_delete: :cascade add_foreign_key "ci_builds_metadata", "projects", on_delete: :cascade add_foreign_key "ci_builds_runner_session", "ci_builds", column: "build_id", on_delete: :cascade + add_foreign_key "ci_daily_report_results", "ci_pipelines", column: "last_pipeline_id", on_delete: :cascade + add_foreign_key "ci_daily_report_results", "projects", on_delete: :cascade add_foreign_key "ci_group_variables", "namespaces", column: "group_id", name: "fk_33ae4d58d8", on_delete: :cascade add_foreign_key "ci_job_artifacts", "ci_builds", column: "job_id", on_delete: :cascade add_foreign_key "ci_job_artifacts", "projects", on_delete: :cascade -- cgit v1.2.3