diff options
author | Vitaly Takmazov | 2022-12-16 20:16:52 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2022-12-16 20:16:52 +0300 |
commit | 1534365e1d6ab23b1c31b27de74b8cd8e5176b48 (patch) | |
tree | c174cbf1a54df26db9ccb57460692219983ea15f | |
parent | eb473d33a1459fecfa1e7194df0572560dabf6ad (diff) |
postgres: incorporate changes from production database
-rw-r--r-- | src/test/resources/db/specific/postgresql/V1.22__schema.sql | 4 |
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 ); |