9 lines
No EOL
207 B
SQL
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
|
|
); |