From 1534365e1d6ab23b1c31b27de74b8cd8e5176b48 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 16 Dec 2022 20:16:52 +0300 Subject: postgres: incorporate changes from production database --- src/test/resources/db/specific/postgresql/V1.22__schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/test/resources/db/specific/postgresql/V1.22__schema.sql b/src/test/resources/db/specific/postgresql/V1.22__schema.sql index 6e8a4c3a..56c2a506 100644 --- a/src/test/resources/db/specific/postgresql/V1.22__schema.sql +++ b/src/test/resources/db/specific/postgresql/V1.22__schema.sql @@ -126,7 +126,7 @@ ALTER TABLE public.android OWNER TO juick; CREATE TABLE public.auth ( user_id bigint, protocol public.auth_protocol NOT NULL, - account character varying(64) NOT NULL, + account character varying(128) NOT NULL, authcode character varying(8) NOT NULL, ts timestamp(6) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); @@ -165,7 +165,7 @@ ALTER TABLE public.bl_users OWNER TO juick; CREATE TABLE public.emails ( user_id bigint NOT NULL, - email character varying(64) NOT NULL, + email character varying(128) NOT NULL, subscr_hour smallint ); -- cgit v1.2.3