Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-29 21:09:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-29 21:09:26 +0300
commit7fe1490a589010205896293ec225dfcc88676a9e (patch)
tree565f6771a34ef557a6dcdd37f46f379e904f0a45 /db/post_migrate
parenta466e9450d5949aa762913729918db02b5d27761 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/post_migrate')
-rw-r--r--db/post_migrate/20221121155850_change_vulnerabilities_state_transitions_comment_limit.rb23
-rw-r--r--db/post_migrate/20221122155149_add_index_for_paths_on_non_projects.rb16
-rw-r--r--db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb17
-rw-r--r--db/post_migrate/20221125222341_remove_result_index_from_authentication_events.rb18
4 files changed, 74 insertions, 0 deletions
diff --git a/db/post_migrate/20221121155850_change_vulnerabilities_state_transitions_comment_limit.rb b/db/post_migrate/20221121155850_change_vulnerabilities_state_transitions_comment_limit.rb
new file mode 100644
index 00000000000..b75216ee413
--- /dev/null
+++ b/db/post_migrate/20221121155850_change_vulnerabilities_state_transitions_comment_limit.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+
+class ChangeVulnerabilitiesStateTransitionsCommentLimit < Gitlab::Database::Migration[2.0]
+ disable_ddl_transaction!
+
+ def up
+ add_text_limit(
+ :vulnerability_state_transitions,
+ :comment,
+ 50_000,
+ constraint_name: check_constraint_name(:vulnerability_state_transitions, :comment, 'max_length_50000')
+ )
+ remove_text_limit(
+ :vulnerability_state_transitions,
+ :comment,
+ constraint_name: 'check_fca4a7ca39'
+ )
+ end
+
+ def down
+ # no-op: this can fail if records with length > 255 (previous limit) show up
+ end
+end
diff --git a/db/post_migrate/20221122155149_add_index_for_paths_on_non_projects.rb b/db/post_migrate/20221122155149_add_index_for_paths_on_non_projects.rb
new file mode 100644
index 00000000000..e9a90844550
--- /dev/null
+++ b/db/post_migrate/20221122155149_add_index_for_paths_on_non_projects.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+class AddIndexForPathsOnNonProjects < Gitlab::Database::Migration[2.0]
+ TABLE_NAME = 'namespaces'
+ INDEX_NAME = 'index_namespaces_on_path_for_top_level_non_projects'
+ COLUMN = "(lower(path::text))"
+ CONDITIONS = "(parent_id IS NULL AND type::text <> 'Project'::text)"
+
+ def up
+ prepare_async_index TABLE_NAME, COLUMN, name: INDEX_NAME, where: CONDITIONS
+ end
+
+ def down
+ unprepare_async_index TABLE_NAME, COLUMN, name: INDEX_NAME
+ end
+end
diff --git a/db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb b/db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb
new file mode 100644
index 00000000000..2d3181dea67
--- /dev/null
+++ b/db/post_migrate/20221125222221_add_metrics_index_to_authentication_events.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class AddMetricsIndexToAuthenticationEvents < Gitlab::Database::Migration[2.0]
+ INDEX_NAME = 'index_successful_authentication_events_for_metrics'
+ disable_ddl_transaction!
+
+ def up
+ add_concurrent_index :authentication_events,
+ %i[user_id provider created_at],
+ where: "result = 1",
+ name: INDEX_NAME
+ end
+
+ def down
+ remove_concurrent_index_by_name :authentication_events, INDEX_NAME
+ end
+end
diff --git a/db/post_migrate/20221125222341_remove_result_index_from_authentication_events.rb b/db/post_migrate/20221125222341_remove_result_index_from_authentication_events.rb
new file mode 100644
index 00000000000..97fb4b320d1
--- /dev/null
+++ b/db/post_migrate/20221125222341_remove_result_index_from_authentication_events.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+class RemoveResultIndexFromAuthenticationEvents < Gitlab::Database::Migration[2.0]
+ disable_ddl_transaction!
+
+ INDEX_NAME = 'index_authentication_events_on_provider_user_id_created_at'
+
+ def up
+ remove_concurrent_index_by_name :authentication_events, INDEX_NAME
+ end
+
+ def down
+ add_concurrent_index :authentication_events,
+ [:provider, :user_id, :created_at],
+ where: 'result = 1',
+ name: INDEX_NAME
+ end
+end