Transfer to git
This commit is contained in:
7
includes/users_db.sql
Normal file
7
includes/users_db.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE users (
|
||||
id INT(11) NOT NULL AUTO_INCREMENT,
|
||||
username VARCHAR(255) NOT NULL,
|
||||
pwd VARCHAR(255) NOT NULL,
|
||||
created_at DATETIME DEFAULT CURRENT_TIME,
|
||||
PRIMARY KEY (id)
|
||||
);
|
||||
Reference in New Issue
Block a user