u/server/migrations/20230304225311_init.sql
2023-03-04 19:29:56 -05: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
);