Skip to content

Commit

Permalink
Modify: DB migrations 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JJieunn committed Oct 23, 2022
1 parent 79dacdb commit c18e0ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/migrations/20221023163702_create_users_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CREATE TABLE users (
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
email VARCHAR(30) NOT NULL UNIQUE,
passwrod VARCHAR(20) NOT NULL,
password VARCHAR(20) NOT NULL,
nickname VARCHAR(15) NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW() ON UPDATE CURRENT_TIMESTAMP
Expand Down

0 comments on commit c18e0ba

Please sign in to comment.