summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2019-06-17 13:45:44 -0500
committerMayra Cabrera <mcabrera@gitlab.com>2019-06-19 12:05:52 -0500
commita338b50f76bb7f492fbe3e68760566e64fd607be (patch)
treec8a0b1579bfe42fd3d4683306051ca1fc459ed03 /db/schema.rb
parent6d4f33ceafbf55ae1283352d092c873221fdcbf1 (diff)
downloadgitlab-ce-62214-namespace-database-migration.tar.gz
Migrate root_id column on Namespaces table62214-namespace-database-migration
Includes: - Migration to add root_id column on Namespaces table - Background migration to schedule the population of this new field
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 7a7319c132e..b534877e30c 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: 20190613030606) do
+ActiveRecord::Schema.define(version: 20190617181054) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -2098,6 +2098,7 @@ ActiveRecord::Schema.define(version: 20190613030606) do
t.integer "extra_shared_runners_minutes_limit"
t.string "ldap_sync_status", default: "ready", null: false
t.boolean "membership_lock", default: false
+ t.integer "root_id"
t.index ["created_at"], name: "index_namespaces_on_created_at", using: :btree
t.index ["custom_project_templates_group_id", "type"], name: "index_namespaces_on_custom_project_templates_group_id_and_type", where: "(custom_project_templates_group_id IS NOT NULL)", using: :btree
t.index ["file_template_project_id"], name: "index_namespaces_on_file_template_project_id", using: :btree