summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Arnold <sarnold@gitlab.com>2019-09-11 09:52:31 +1200
committerSean Arnold <sarnold@gitlab.com>2019-09-11 09:52:31 +1200
commit796bc9294fa56df00f6996e316fb53416f625858 (patch)
treec66d469a5cdbc155db57e22e59f107fecf989437
parent5647819f702fe1e92e6d5fff475d2a2f2271aecc (diff)
downloadgitlab-ce-ce-usage-ping-for-incident-auto-create-issue.tar.gz
Update schema to remove unnecessary changesce-usage-ping-for-incident-auto-create-issue
-rw-r--r--db/schema.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 2a197561548..cabf44c606b 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -272,6 +272,7 @@ ActiveRecord::Schema.define(version: 2019_09_05_233042) do
t.boolean "lock_memberships_to_ldap", default: false, null: false
t.boolean "time_tracking_limit_to_hours", default: false, null: false
t.string "grafana_url", default: "/-/grafana", null: false
+ t.boolean "login_recaptcha_protection_enabled", default: false, null: false
t.string "outbound_local_requests_whitelist", limit: 255, default: [], null: false, array: true
t.integer "raw_blob_request_limit", default: 300, null: false
t.boolean "allow_local_requests_from_web_hooks_and_services", default: false, null: false
@@ -283,7 +284,6 @@ ActiveRecord::Schema.define(version: 2019_09_05_233042) do
t.text "asset_proxy_whitelist"
t.text "encrypted_asset_proxy_secret_key"
t.string "encrypted_asset_proxy_secret_key_iv"
- t.boolean "login_recaptcha_protection_enabled", default: false, null: false
t.index ["custom_project_templates_group_id"], name: "index_application_settings_on_custom_project_templates_group_id"
t.index ["file_template_project_id"], name: "index_application_settings_on_file_template_project_id"
t.index ["instance_administration_project_id"], name: "index_applicationsettings_on_instance_administration_project_id"
@@ -619,9 +619,9 @@ ActiveRecord::Schema.define(version: 2019_09_05_233042) do
t.integer "project_id", null: false
t.integer "timeout"
t.integer "timeout_source", default: 1, null: false
+ t.boolean "interruptible"
t.jsonb "config_options"
t.jsonb "config_variables"
- t.boolean "interruptible"
t.index ["build_id"], name: "index_ci_builds_metadata_on_build_id", unique: true
t.index ["build_id"], name: "index_ci_builds_metadata_on_build_id_and_interruptible_false", where: "(interruptible = false)"
t.index ["project_id"], name: "index_ci_builds_metadata_on_project_id"
@@ -2690,7 +2690,6 @@ ActiveRecord::Schema.define(version: 2019_09_05_233042) do
t.boolean "create_issue", default: true, null: false
t.boolean "send_email", default: false, null: false
t.text "issue_template_key"
- t.index ["create_issue"], name: "index_project_incident_management_settings_on_create_issue"
end
create_table "project_metrics_settings", primary_key: "project_id", id: :integer, default: nil, force: :cascade do |t|