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:
parent
3cf34b5911
commit
3ac01d72f9
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue