began to refactor backend

This commit is contained in:
2025-11-05 10:25:23 +01:00
parent 3e67bf9052
commit 27d21efefa
12 changed files with 141 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ CREATE TABLE users (
id int NOT NULL AUTO_INCREMENT,
username varchar(100) NOT NULL UNIQUE,
password varchar(255) NOT NULL,
email varchar(255) NOT NULL,
first_name varchar(255) NOT NULL,
last_name varchar(255) NOT NULL,
role int NOT NULL,