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
c36a46ef
Commit
c36a46ef
authored
Nov 13, 2020
by
Małgorzata Ksionek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix failing pipeline
parent
c4ea1663
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
db/post_migrate/20201030121314_schedule_update_existing_users_that_require_two_factor_auth.rb
...ule_update_existing_users_that_require_two_factor_auth.rb
+1
-1
db/structure.sql
db/structure.sql
+2
-2
No files found.
db/post_migrate/20201030121314_schedule_update_existing_users_that_require_two_factor_auth.rb
View file @
c36a46ef
...
...
@@ -30,6 +30,6 @@ class ScheduleUpdateExistingUsersThatRequireTwoFactorAuth < ActiveRecord::Migrat
end
def
down
remove_concurrent_index
:users
,
INDEX_NAME
remove_concurrent_index
_by_name
:users
,
INDEX_NAME
end
end
db/structure.sql
View file @
c36a46ef
...
...
@@ -22038,6 +22038,8 @@ CREATE INDEX index_users_on_name_trigram ON users USING gin (name gin_trgm_ops);
CREATE
INDEX
index_users_on_public_email
ON
users
USING
btree
(
public_email
)
WHERE
((
public_email
)::
text
<>
''
::
text
);
CREATE
INDEX
index_users_on_require_two_factor_authentication_from_group
ON
users
USING
btree
(
require_two_factor_authentication_from_group
);
CREATE
UNIQUE
INDEX
index_users_on_reset_password_token
ON
users
USING
btree
(
reset_password_token
);
CREATE
INDEX
index_users_on_state
ON
users
USING
btree
(
state
);
...
...
@@ -22228,8 +22230,6 @@ CREATE INDEX snippet_repositories_verification_checksum_partial ON snippet_repos
CREATE
INDEX
snippet_repositories_verification_failure_partial
ON
snippet_repositories
USING
btree
(
verification_failure
)
WHERE
(
verification_failure
IS
NOT
NULL
);
CREATE
INDEX
index_users_on_require_two_factor_authentication_from_group
ON
users
USING
btree
(
require_two_factor_authentication_from_group
);
CREATE
UNIQUE
INDEX
snippet_user_mentions_on_snippet_id_and_note_id_index
ON
snippet_user_mentions
USING
btree
(
snippet_id
,
note_id
);
CREATE
UNIQUE
INDEX
snippet_user_mentions_on_snippet_id_index
ON
snippet_user_mentions
USING
btree
(
snippet_id
)
WHERE
(
note_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