u/migrations/20230304225311_init.sql

9 lines
207 B
MySQL
Raw Normal View History

2023-03-04 19:29:56 -05:00
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
);