mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
15 lines
329 B
PL/PgSQL
15 lines
329 B
PL/PgSQL
begin;
|
|
|
|
create table apikeys(
|
|
pk serial primary key,
|
|
id uuid not null default gen_random_uuid(),
|
|
name varchar(256) not null unique,
|
|
token varchar(128) not null unique,
|
|
claims jsonb not null,
|
|
|
|
created_at timestamptz not null default now()::timestamptz,
|
|
last_used timestamptz not null default now()::temistamptz
|
|
);
|
|
|
|
commit;
|