0
Fork 0
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 ()

This commit is contained in:
IceHe.xyz 2022-05-26 17:44:32 +08:00 committed by GitHub
parent 7bb864e0b7
commit 9d8ef7632b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,