Base UI design, May contain bugs

This commit is contained in:
Mann Patel
2025-03-05 22:30:52 -07:00
parent 4bedeed33c
commit 49929a85da
28 changed files with 2208 additions and 367 deletions

10
backend/user.sql Normal file
View File

@@ -0,0 +1,10 @@
CREATE TABLE users
(
User_Id int NOT NULL,
Name varchar(255) NOT NULL,
UCID int NOT NULL,
Email varchar(255) NOT NULL,
Phone varchar(255),
Address varchar(255),
--TODO: Add the ROle section
)