From 145830b87ee3953b3e7046c0f6e3293d8328d322 Mon Sep 17 00:00:00 2001 From: DongGeon0908 Date: Tue, 5 Nov 2024 20:47:01 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20ddl=20query=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/user.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/user.sql b/sql/user.sql index 70fc7d1..3d1b74a 100644 --- a/sql/user.sql +++ b/sql/user.sql @@ -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 '수정일',