mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(schemas): remove user foreign key on application id (#964)
This commit is contained in:
parent
7bb864e0b7
commit
9d8ef7632b
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ create table users (
|
|||
password_encryption_method users_password_encryption_method,
|
||||
name varchar(128),
|
||||
avatar varchar(256),
|
||||
application_id varchar(21) references applications(id),
|
||||
application_id varchar(21),
|
||||
role_names jsonb /* @use RoleNames */ not null default '[]'::jsonb,
|
||||
identities jsonb /* @use Identities */ not null default '{}'::jsonb,
|
||||
custom_data jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb,
|
||||
|
|
Loading…
Add table
Reference in a new issue