Skip to content

Commit

Permalink
chore #77 : update ddl
Browse files Browse the repository at this point in the history
- Changed password column in accounts table to be nullable.
  • Loading branch information
seonpilKim committed Oct 9, 2024
1 parent 3407379 commit 0658bb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/titi.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS accounts
(
id BIGINT AUTO_INCREMENT,
username VARCHAR(30) NOT NULL UNIQUE COMMENT '아이디(이메일)',
password VARCHAR(255) NOT NULL COMMENT '비밀번호',
password VARCHAR(255) COMMENT '비밀번호',
authority ENUM ('MEMBER', 'ADMIN') NOT NULL COMMENT '권한',
account_status ENUM ('ACTIVATED', 'DEACTIVATED', 'SUSPENDED', 'BLOCKED', 'DELETED') NOT NULL COMMENT '계정 상태',
created_at DATETIME(6) NOT NULL COMMENT '생성 일시',
Expand Down

0 comments on commit 0658bb0

Please sign in to comment.