9 lines
207 B
MySQL
9 lines
207 B
MySQL
|
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
|
||
|
);
|