Update postgres_schema.sql

pull/80/head
Go Johansson (neku) 2023-02-18 17:03:44 +01:00
parent 5205351911
commit b715f164e8
1 changed files with 8 additions and 0 deletions

View File

@ -24,4 +24,12 @@ CREATE TABLE ratelimit
iphash text NOT NULL,
files integer not null,
time integer not null
);
CREATE TABLE accounts
(
id serial PRIMARY KEY,
email text NOT NULL,
pass text not null,
level integer not null
);