0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

feat(schemas): make users.avatar URL length 2048 (#1141)

This commit is contained in:
IceHe.xyz 2022-06-17 17:04:04 +08:00 committed by GitHub
parent 3cf34b5911
commit 3ac01d72f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@ create table users (
password_encrypted varchar(128),
password_encryption_method users_password_encryption_method,
name varchar(128),
avatar varchar(256),
avatar varchar(2048),
application_id varchar(21),
role_names jsonb /* @use RoleNames */ not null default '[]'::jsonb,
identities jsonb /* @use Identities */ not null default '{}'::jsonb,