Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
093b18bb
Commit
093b18bb
authored
Jan 13, 2021
by
charlie ablett
Committed by
Adam Hegyi
Jan 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move down one in structure.sql
parent
ffaa98fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
db/structure.sql
db/structure.sql
+2
-2
No files found.
db/structure.sql
View file @
093b18bb
...
...
@@ -21991,10 +21991,10 @@ CREATE UNIQUE INDEX index_label_priorities_on_project_id_and_label_id ON label_p
CREATE
UNIQUE
INDEX
index_labels_on_group_id_and_project_id_and_title
ON
labels
USING
btree
(
group_id
,
project_id
,
title
);
CREATE
INDEX
index_labels_on_group_id_and_title_with_null_project_id
ON
labels
USING
btree
(
group_id
,
title
)
WHERE
(
project_id
IS
NULL
);
CREATE
UNIQUE
INDEX
index_labels_on_group_id_and_title_unique
ON
labels
USING
btree
(
group_id
,
title
)
WHERE
(
project_id
IS
NULL
);
CREATE
INDEX
index_labels_on_group_id_and_title_with_null_project_id
ON
labels
USING
btree
(
group_id
,
title
)
WHERE
(
project_id
IS
NULL
);
CREATE
INDEX
index_labels_on_project_id
ON
labels
USING
btree
(
project_id
);
CREATE
UNIQUE
INDEX
index_labels_on_project_id_and_title_unique
ON
labels
USING
btree
(
project_id
,
title
)
WHERE
(
group_id
IS
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment