Skip to content

Commit 58ebc1f

Browse files
more characters available to store in the password field
1 parent e36070d commit 58ebc1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/db.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ CREATE TABLE users(
99
id INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
1010
email VARCHAR(50) NOT NULL,
1111
fullname VARCHAR(50) NOT NULL,
12-
password VARCHAR(30) NOT NULL,
12+
password VARCHAR(200) NOT NULL,
1313
created_at timestamp NOT NULL DEFAULT current_timestamp
1414
);
1515

1616
-- Check if the table structure is correct.
17-
DESCRIBE users;
17+
DESCRIBE users;

0 commit comments

Comments
 (0)