diff options
author | syasonik <syasonik@gitlab.com> | 2019-03-05 23:10:03 +0800 |
---|---|---|
committer | syasonik <syasonik@gitlab.com> | 2019-03-11 17:51:16 +0800 |
commit | 9de0dfe144861afbb7f7a285a2db0380e30b0fe5 (patch) | |
tree | 4006f5768be102508799748c7a1610fbf4617e19 /db/schema.rb | |
parent | 8a59c9fdba4572cdfd60be6630d96fd37dc35654 (diff) | |
download | gitlab-ce-utilize-multiple-queries.tar.gz |
Move Canary and env metrics onto single chartutilize-multiple-queries
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/db/schema.rb b/db/schema.rb index 59a76e21a5f..03917b8d9b9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20190301182457) do +ActiveRecord::Schema.define(version: 20190311094943) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -37,13 +37,13 @@ ActiveRecord::Schema.define(version: 20190301182457) do t.integer "cached_markdown_version" t.text "new_project_guidelines" t.text "new_project_guidelines_html" + t.string "favicon" t.text "header_message" t.text "header_message_html" t.text "footer_message" t.text "footer_message_html" t.text "message_background_color" t.text "message_font_color" - t.string "favicon" t.boolean "email_header_and_footer_enabled", default: false, null: false end @@ -175,8 +175,8 @@ ActiveRecord::Schema.define(version: 20190301182457) do t.string "commit_email_hostname" t.boolean "protected_ci_variables", default: false, null: false t.string "runners_registration_token_encrypted" - t.integer "local_markdown_version", default: 0, null: false t.integer "first_day_of_week", default: 0, null: false + t.integer "local_markdown_version", default: 0, null: false t.index ["usage_stats_set_by_user_id"], name: "index_application_settings_on_usage_stats_set_by_user_id", using: :btree end @@ -1843,6 +1843,7 @@ ActiveRecord::Schema.define(version: 20190301182457) do t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["path"], name: "index_redirect_routes_on_path", unique: true, using: :btree + t.index ["path"], name: "index_redirect_routes_on_path_text_pattern_ops", using: :btree, opclasses: {"path"=>"varchar_pattern_ops"} t.index ["source_type", "source_id"], name: "index_redirect_routes_on_source_type_and_source_id", using: :btree end @@ -2187,9 +2188,9 @@ ActiveRecord::Schema.define(version: 20190301182457) do t.integer "merge_request_notes_filter", limit: 2, default: 0, null: false t.datetime_with_timezone "created_at", null: false t.datetime_with_timezone "updated_at", null: false - t.integer "first_day_of_week" t.string "issues_sort" t.string "merge_requests_sort" + t.integer "first_day_of_week" t.index ["user_id"], name: "index_user_preferences_on_user_id", unique: true, using: :btree end |