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>2023-05-10 06:09:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-10 06:09:12 +0300
commit3591ecba91126089ebf916f9bd95fe497609920c (patch)
tree139e2f7ebdc0e11b62ad1b0e5bfbdf18a6f2ddf2 /spec/fixtures
parent38c1da5195bdcaab0b20bf6303a675b9283ac476 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/structure.sql6
1 files changed, 4 insertions, 2 deletions
diff --git a/spec/fixtures/structure.sql b/spec/fixtures/structure.sql
index 5a7deb4fadf..11e4f754abc 100644
--- a/spec/fixtures/structure.sql
+++ b/spec/fixtures/structure.sql
@@ -49,8 +49,10 @@ CREATE TABLE test_table (
uuid_with_default_column uuid DEFAULT '00000000-0000-0000-0000-000000000000'::uuid NOT NULL,
bytea_column bytea,
bytea_with_default_column bytea DEFAULT '\xDEADBEEF'::bytea,
- unmapped_column_type anyarray
-);
+ unmapped_column_type anyarray,
+ partition_key bigint DEFAULT 1 NOT NULL,
+ created_at timestamp with time zone DEFAULT now() NOT NULL
+) PARTITION BY HASH (partition_key, created_at);
CREATE TABLE ci_project_mirrors (
id bigint NOT NULL,