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
path: root/db
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-06-09 09:09:00 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-09 09:09:00 +0300
commit7a544c9ef1136ce0b52e269f54ebe74d0f26ad3d (patch)
treeeba4e16a960ed4cbdf144ce023e49597a67ab55a /db
parent9627be559df06d4becd34a15972f11cadc588344 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20211202041233_init_schema.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/migrate/20211202041233_init_schema.rb b/db/migrate/20211202041233_init_schema.rb
index 97027f8a9e4..3a1c319320a 100644
--- a/db/migrate/20211202041233_init_schema.rb
+++ b/db/migrate/20211202041233_init_schema.rb
@@ -4,7 +4,9 @@ class InitSchema < Gitlab::Database::Migration[1.0]
DOWNTIME = false
def up
- execute(File.read("db/init_structure.sql"))
+ suppress_messages do
+ execute(File.read("db/init_structure.sql"))
+ end
end
def down