diff options
author | Mayra Cabrera <mcabrera@gitlab.com> | 2019-06-17 13:45:44 -0500 |
---|---|---|
committer | Mayra Cabrera <mcabrera@gitlab.com> | 2019-06-19 12:05:52 -0500 |
commit | a338b50f76bb7f492fbe3e68760566e64fd607be (patch) | |
tree | c8a0b1579bfe42fd3d4683306051ca1fc459ed03 /spec/db/schema_spec.rb | |
parent | 6d4f33ceafbf55ae1283352d092c873221fdcbf1 (diff) | |
download | gitlab-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 'spec/db/schema_spec.rb')
-rw-r--r-- | spec/db/schema_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/db/schema_spec.rb b/spec/db/schema_spec.rb index 6cfec5f4017..55b42dbe35f 100644 --- a/spec/db/schema_spec.rb +++ b/spec/db/schema_spec.rb @@ -46,7 +46,7 @@ describe 'Database schema' do ldap_group_links: %w[group_id], members: %w[source_id created_by_id], merge_requests: %w[last_edited_by_id state_id], - namespaces: %w[owner_id parent_id], + namespaces: %w[owner_id parent_id root_id], notes: %w[author_id commit_id noteable_id updated_by_id resolved_by_id discussion_id], notification_settings: %w[source_id], oauth_access_grants: %w[resource_owner_id application_id], |