1
0
mirror of https://github.com/nokonoko/Uguu.git synced 2024-01-06 13:35:15 +00:00

Update postgres_schema.sql

This commit is contained in:
Go Johansson (neku) 2023-02-18 17:03:44 +01:00
parent 5205351911
commit b715f164e8

View File

@ -25,3 +25,11 @@ CREATE TABLE ratelimit
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
);