We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e36070d commit 58ebc1fCopy full SHA for 58ebc1f
database/db.sql
@@ -9,9 +9,9 @@ CREATE TABLE users(
9
id INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
10
email VARCHAR(50) NOT NULL,
11
fullname VARCHAR(50) NOT NULL,
12
- password VARCHAR(30) NOT NULL,
+ password VARCHAR(200) NOT NULL,
13
created_at timestamp NOT NULL DEFAULT current_timestamp
14
);
15
16
-- Check if the table structure is correct.
17
-DESCRIBE users;
+DESCRIBE users;
0 commit comments