feat: initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
CREATE DATABASE IF NOT EXISTS ma_base_de_donnees;
|
||||
USE ma_base_de_donnees;
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
username VARCHAR(50) NOT NULL,
|
||||
email VARCHAR(100) NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO users (username, email) VALUES ('admin', 'admin@exemple.com');
|
||||
Reference in New Issue
Block a user