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-04-14 12:09:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-14 12:09:02 +0300
commit6d8f30ab0ae82678f10450d2158f24772f0c765c (patch)
treef308a3feb16199440421980e68501d5efa0a9b10 /spec/fixtures
parentc192f26df39e9a2ab122c2d097b86e461599bde8 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/structure.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/fixtures/structure.sql b/spec/fixtures/structure.sql
index 6312545c593..5a7deb4fadf 100644
--- a/spec/fixtures/structure.sql
+++ b/spec/fixtures/structure.sql
@@ -35,8 +35,8 @@ CREATE TABLE test_table (
array_with_default_column character varying(255)[] DEFAULT '{one,two}'::character varying[] NOT NULL,
jsonb_column jsonb,
jsonb_with_default_column jsonb DEFAULT '[]'::jsonb NOT NULL,
- timestampz_column timestamp with time zone,
- timestampz_with_default_column timestamp with time zone DEFAULT now(),
+ timestamptz_column timestamp with time zone,
+ timestamptz_with_default_column timestamp(6) with time zone DEFAULT now(),
timestamp_column timestamp(6) without time zone NOT NULL,
timestamp_with_default_column timestamp(6) without time zone DEFAULT '2022-01-23 00:00:00+00'::timestamp without time zone NOT NULL,
date_column date,