From 734cfba43249cd3eb45304119895c7ad249bd108 Mon Sep 17 00:00:00 2001 From: hskwon Date: Fri, 25 Jul 2025 15:11:56 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20id=5Fsession=20id=20=EC=BB=AC?= =?UTF-8?q?=EB=9F=BC=20=EA=B8=B8=EC=9D=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - varchar(40) -> varchar(128) --- ...901_alter_log_session_id_length_to_128.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 database/migrations/2025_07_25_150901_alter_log_session_id_length_to_128.php diff --git a/database/migrations/2025_07_25_150901_alter_log_session_id_length_to_128.php b/database/migrations/2025_07_25_150901_alter_log_session_id_length_to_128.php new file mode 100644 index 0000000..52fc61c --- /dev/null +++ b/database/migrations/2025_07_25_150901_alter_log_session_id_length_to_128.php @@ -0,0 +1,23 @@ +string('id', 128)->change(); + }); + } + + public function down(): void + { + Schema::table('log_session', function (Blueprint $table) { + // id 컬럼 길이를 원래대로 40으로 복구 + $table->string('id', 40)->change(); + }); + } +};