Skip to content

Commit

Permalink
chore: ddl query 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Nov 5, 2024
1 parent ef784bc commit 145830b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/user.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CREATE TABLE `user_info`
(
`id` bigint NOT NULL AUTO_INCREMENT COMMENT 'user id',
`nickname` varchar(64) NOT NULL COMMENT '닉네임',
`nickname` varchar(256) NOT NULL COMMENT '닉네임',
`level` int DEFAULT 1 COMMENT '유저 레벨',
`created_at` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '생성일',
`modified_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '수정일',
Expand Down

0 comments on commit 145830b

Please sign in to comment.