mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
29 lines
921 B
SQL
29 lines
921 B
SQL
/* init_order = 1 */
|
|
|
|
create type users_password_encryption_method as enum ('Argon2i');
|
|
|
|
create table users (
|
|
tenant_id varchar(21) not null
|
|
references tenants (id) on update cascade on delete cascade,
|
|
id varchar(12) not null,
|
|
username varchar(128) unique,
|
|
primary_email varchar(128) unique,
|
|
primary_phone varchar(128) unique,
|
|
password_encrypted varchar(128),
|
|
password_encryption_method users_password_encryption_method,
|
|
name varchar(128),
|
|
avatar varchar(2048),
|
|
application_id varchar(21),
|
|
identities jsonb /* @use Identities */ not null default '{}'::jsonb,
|
|
custom_data jsonb /* @use ArbitraryObject */ not null default '{}'::jsonb,
|
|
is_suspended boolean not null default false,
|
|
last_sign_in_at timestamptz,
|
|
created_at timestamptz not null default (now()),
|
|
primary key (id)
|
|
);
|
|
|
|
create index users__id
|
|
on users (tenant_id, id);
|
|
|
|
create index users__name
|
|
on users (tenant_id, name);
|