database dari register akun
This commit is contained in:
parent
dd3bde9749
commit
c2eafbbcfb
8
dam_db.sql
Normal file
8
dam_db.sql
Normal file
@ -0,0 +1,8 @@
|
||||
USE dam_db;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
username VARCHAR(50) NOT NULL UNIQUE,
|
||||
password VARCHAR(255) NOT NULL,
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
||||
) ENGINE=InnoDB;
|
||||
Loading…
x
Reference in New Issue
Block a user