aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources
diff options
context:
space:
mode:
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
);