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
887b515d
Commit
887b515d
authored
Mar 31, 2022
by
John Mason
Committed by
Mayra Cabrera
Mar 31, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove user_email_lookup_limit column
Changelog: changed
parent
db840a71
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
db/post_migrate/20220321201912_remove_user_email_lookup_limit.rb
..._migrate/20220321201912_remove_user_email_lookup_limit.rb
+13
-0
db/schema_migrations/20220321201912
db/schema_migrations/20220321201912
+1
-0
db/structure.sql
db/structure.sql
+0
-1
No files found.
db/post_migrate/20220321201912_remove_user_email_lookup_limit.rb
0 → 100644
View file @
887b515d
# frozen_string_literal: true
class
RemoveUserEmailLookupLimit
<
Gitlab
::
Database
::
Migration
[
1.0
]
disable_ddl_transaction!
def
up
remove_column
:application_settings
,
:user_email_lookup_limit
end
def
down
add_column
:application_settings
,
:user_email_lookup_limit
,
:integer
,
null:
false
,
default:
60
end
end
db/schema_migrations/20220321201912
0 → 100644
View file @
887b515d
b9460a2962364ae836237382b84257f30673ffbe682a58776d6aaeab8f28f67d
\ No newline at end of file
db/structure.sql
View file @
887b515d
...
@@ -11235,7 +11235,6 @@ CREATE TABLE application_settings (
...
@@ -11235,7 +11235,6 @@ CREATE TABLE application_settings (
max_ssh_key_lifetime integer,
max_ssh_key_lifetime integer,
static_objects_external_storage_auth_token_encrypted text,
static_objects_external_storage_auth_token_encrypted text,
future_subscriptions jsonb DEFAULT '[]'::jsonb NOT NULL,
future_subscriptions jsonb DEFAULT '[]'::jsonb NOT NULL,
user_email_lookup_limit integer DEFAULT 60 NOT NULL,
packages_cleanup_package_file_worker_capacity smallint DEFAULT 2 NOT NULL,
packages_cleanup_package_file_worker_capacity smallint DEFAULT 2 NOT NULL,
container_registry_import_max_tags_count integer DEFAULT 100 NOT NULL,
container_registry_import_max_tags_count integer DEFAULT 100 NOT NULL,
container_registry_import_max_retries integer DEFAULT 3 NOT NULL,
container_registry_import_max_retries integer DEFAULT 3 NOT 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