feat: initial import — ClickerZ formation project (Express + React/Vite)
This commit is contained in:
9
Backend/database/schema.sql
Executable file
9
Backend/database/schema.sql
Executable file
@@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS users;
|
||||
|
||||
CREATE TABLE users (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
nickname VARCHAR(30) NOT NULL,
|
||||
mail VARCHAR(90) NOT NULL,
|
||||
password VARCHAR(200) NOT NULL,
|
||||
tetardcoin INT default 0
|
||||
);
|
||||
Reference in New Issue
Block a user