u/migrations/20230304225311_init.sql
2023-04-28 13:19:02 -04:00

9 lines
No EOL
207 B
SQL

create table api_keys (
key varchar(64) primary key not null,
admin boolean not null default false
);
create table files (
id varchar(8) primary key not null,
revocation_key varchar(128) not null
);