summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2019-06-07 10:57:35 +0100
committerFilipa Lacerda <filipa@gitlab.com>2019-06-07 10:57:35 +0100
commiteb9632aab2f027393ab34158453114fd281e4d55 (patch)
treee9047cb60db1092a1e1a0cdf1c9759b3bb753156 /db/schema.rb
parent399085d6f5f0bbbd61f1286a93e76aa2371f9143 (diff)
parentfd19f887dfeeeedb483c4a4fb32f9f768e89389c (diff)
downloadgitlab-ce-62788-graphql-pagination.tar.gz
Merge branch 'master' into 62788-graphql-pagination62788-graphql-pagination
* master: (61 commits) Add dependency list documentation added code differences from EE to CE Remove metrics_time_window feature flag SSoT audit fixes Integrate demo link into content more Add styles and animations for onboarding helper Add git 2.21 install from update_source IDE trigger files change event Remove 'build-page' from 'ide-terminal' element Add section to dev docs on accessing chatops Fix OpenID Connect documentation Make OpenID Connect work without requiring a name Apply reviewer feedback Change text to match screencaps Reword for clarity Upgrade jira user permissions workflow docs Fix some typoes Removes duplicated shared_context folder Add frontend support for cluster health alerts Add changelog entry for sidekiq metrics ...
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index fcf9e397ac1..7de5b0352f0 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1571,6 +1571,20 @@ ActiveRecord::Schema.define(version: 20190530154715) do
t.index ["access_grant_id"], name: "index_oauth_openid_requests_on_access_grant_id", using: :btree
end
+ create_table "pages_domain_acme_orders", force: :cascade do |t|
+ t.integer "pages_domain_id", null: false
+ t.datetime_with_timezone "expires_at", null: false
+ t.datetime_with_timezone "created_at", null: false
+ t.datetime_with_timezone "updated_at", null: false
+ t.string "url", null: false
+ t.string "challenge_token", null: false
+ t.text "challenge_file_content", null: false
+ t.text "encrypted_private_key", null: false
+ t.text "encrypted_private_key_iv", null: false
+ t.index ["challenge_token"], name: "index_pages_domain_acme_orders_on_challenge_token", using: :btree
+ t.index ["pages_domain_id"], name: "index_pages_domain_acme_orders_on_pages_domain_id", using: :btree
+ end
+
create_table "pages_domains", id: :serial, force: :cascade do |t|
t.integer "project_id"
t.text "certificate"
@@ -1583,6 +1597,8 @@ ActiveRecord::Schema.define(version: 20190530154715) do
t.datetime_with_timezone "enabled_until"
t.datetime_with_timezone "remove_at"
t.boolean "auto_ssl_enabled", default: false, null: false
+ t.datetime_with_timezone "certificate_valid_not_before"
+ t.datetime_with_timezone "certificate_valid_not_after"
t.index ["domain"], name: "index_pages_domains_on_domain", unique: true, using: :btree
t.index ["project_id", "enabled_until"], name: "index_pages_domains_on_project_id_and_enabled_until", using: :btree
t.index ["project_id"], name: "index_pages_domains_on_project_id", using: :btree
@@ -2560,6 +2576,7 @@ ActiveRecord::Schema.define(version: 20190530154715) do
add_foreign_key "notes", "projects", name: "fk_99e097b079", on_delete: :cascade
add_foreign_key "notification_settings", "users", name: "fk_0c95e91db7", on_delete: :cascade
add_foreign_key "oauth_openid_requests", "oauth_access_grants", column: "access_grant_id", name: "fk_oauth_openid_requests_oauth_access_grants_access_grant_id"
+ add_foreign_key "pages_domain_acme_orders", "pages_domains", on_delete: :cascade
add_foreign_key "pages_domains", "projects", name: "fk_ea2f6dfc6f", on_delete: :cascade
add_foreign_key "personal_access_tokens", "users"
add_foreign_key "pool_repositories", "projects", column: "source_project_id", on_delete: :nullify