Add database

This commit is contained in:
2023-10-30 13:20:09 -04:00
parent 5e837e68ca
commit 8619c00a20
3 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
create table users (
-- id INT NOT NULL AUTO_INCREMENT,
username VARCHAR NOT NULL UNIQUE,
password TEXT NOT NULL,
admin BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (username)
);