Skip to content

Commit 1ecf7e6

Browse files
committed
[fix] user 테이블 컬럼 추가
1 parent da0205c commit 1ecf7e6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/resources/db/migration/V1__init.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ CREATE TABLE users
2222
update_date_time TIMESTAMP(6) NOT NULL,
2323
contact_id BIGINT NOT NULL,
2424
feed_cnt INT NOT NULL,
25+
challenge_cnt INT NOT NULL,
2526
CONSTRAINT fk_user_contact FOREIGN KEY (contact_id) REFERENCES contact (contact_id),
2627
CONSTRAINT uq_users UNIQUE (username)
2728
);

0 commit comments

Comments
 (0)