feat: Add base files
This commit is contained in:
8
db/init.sql
Normal file
8
db/init.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE users (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
username VARCHAR(255),
|
||||
password VARCHAR(255)
|
||||
);
|
||||
|
||||
INSERT INTO users (username, password) VALUES ('admin', 'admin123');
|
||||
INSERT INTO users (username, password) VALUES ('user', 'password');
|
||||
Reference in New Issue
Block a user