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>2021-11-13 03:11:03 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-13 03:11:03 +0300
commita125ac8a014fc86f8c716229835ed0a0403a6e91 (patch)
treeb72524d8c77b46bb3a3f12912f886001977f6102 /db
parent5dc3d39cca076fc6f05fc005d5620bfa3d09be17 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db')
-rw-r--r--db/post_migrate/20211103162025_add_index_on_events_using_btree_created_at_id.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/post_migrate/20211103162025_add_index_on_events_using_btree_created_at_id.rb b/db/post_migrate/20211103162025_add_index_on_events_using_btree_created_at_id.rb
index a8ef8e51e8c..33d5833db1a 100644
--- a/db/post_migrate/20211103162025_add_index_on_events_using_btree_created_at_id.rb
+++ b/db/post_migrate/20211103162025_add_index_on_events_using_btree_created_at_id.rb
@@ -4,7 +4,7 @@ class AddIndexOnEventsUsingBtreeCreatedAtId < Gitlab::Database::Migration[1.0]
INDEX_NAME = 'index_events_on_created_at_and_id'
TABLE = :events
COLUMNS = %i[created_at id]
- CONSTRAINTS = "created_at > '2021-08-27 00:00:00+00'::timestamp with time zone"
+ CONSTRAINTS = "created_at > '2021-08-27 00:00:00+00'"
disable_ddl_transaction!
def up