Feature/users #6

Merged
Corpintech merged 7 commits from feature/users into main 2025-08-23 17:04:45 -04:00
Showing only changes of commit 9b8e7de960 - Show all commits

8
database_schema.sql Normal file
View File

@@ -0,0 +1,8 @@
-- Creates the users table
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50) NOT NULL UNIQUE,
email VARCHAR(100) NOT NULL UNIQUE,
password VARCHAR(255) NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);