mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
16 lines
331 B
PL/PgSQL
16 lines
331 B
PL/PgSQL
begin;
|
|
|
|
create table users(
|
|
id uuid primary key,
|
|
username varchar(256) not null unique,
|
|
email varchar(320) not null unique,
|
|
password text,
|
|
external_handle jsonb not null,
|
|
claims jsonb not null,
|
|
|
|
created_date timestampz not null default now()::timestampz,
|
|
last_seen timestampz not null default now()::timestampz
|
|
);
|
|
|
|
commit;
|