aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-12-16 20:16:52 +0300
committerGravatar Vitaly Takmazov2022-12-16 20:16:52 +0300
commit1534365e1d6ab23b1c31b27de74b8cd8e5176b48 (patch)
treec174cbf1a54df26db9ccb57460692219983ea15f /src/test/resources
parenteb473d33a1459fecfa1e7194df0572560dabf6ad (diff)
postgres: incorporate changes from production database
Diffstat (limited to 'src/test/resources')
-rw-r--r--src/test/resources/db/specific/postgresql/V1.22__schema.sql4
1 files changed, 2 insertions, 2 deletions
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
);