Skip to content

Commit b455e06

Browse files
committed
Increase the minimum lenght of a users name from 0 to 1
1 parent 7520ed2 commit b455e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema/sql/schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ create table "hosts" (
1919
create sequence user_id minvalue 4000 maxvalue 59999 no cycle;
2020

2121
create domain username_t text check (
22-
value ~ '^[a-z][a-z0-9]{0,30}$'
22+
value ~ '^[a-z][a-z0-9]{4,30}$'
2323
);
2424

2525
create table "passwd" (

0 commit comments

Comments
 (0)