diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-07 17:13:30 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-07 17:13:30 -0800 |
commit | a373cda815b0a44d93b485800b63a785c9aeb8aa (patch) | |
tree | 4adee72822e9c667d53f43a6888a12c80645f248 | |
parent | 3654fcfca716c7994bd166436cfb57b6b65d7c85 (diff) | |
download | fatcat-a373cda815b0a44d93b485800b63a785c9aeb8aa.tar.gz fatcat-a373cda815b0a44d93b485800b63a785c9aeb8aa.zip |
bump allowed username length to 25 chars
-rw-r--r-- | rust/migrations/2018-05-12-001226_init/up.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/migrations/2018-05-12-001226_init/up.sql b/rust/migrations/2018-05-12-001226_init/up.sql index cf7e3fe2..ddaa60b3 100644 --- a/rust/migrations/2018-05-12-001226_init/up.sql +++ b/rust/migrations/2018-05-12-001226_init/up.sql @@ -16,7 +16,7 @@ CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; CREATE TABLE editor ( id UUID PRIMARY KEY DEFAULT uuid_generate_v4(), - username TEXT NOT NULL CHECK (username ~* '^[A-Za-z0-9][A-Za-z0-9._-]{2,19}$'), -- UNIQ below + username TEXT NOT NULL CHECK (username ~* '^[A-Za-z][A-Za-z0-9._-]{2,24}$'), -- UNIQ below is_superuser BOOLEAN NOT NULL DEFAULT false, is_admin BOOLEAN NOT NULL DEFAULT false, is_bot BOOLEAN NOT NULL DEFAULT false, |