From cc5fe61fcd94c9b3e9e0e834d53f3d54d801a49a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 19 Feb 2026 10:00:55 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EA=B1=B0=EB=9E=98=EC=B2=98=20=EC=97=85?= =?UTF-8?q?=ED=83=9C/=EC=A2=85=EB=AA=A9=20=EC=BB=AC=EB=9F=BC=20=ED=81=AC?= =?UTF-8?q?=EA=B8=B0=20=ED=99=95=EC=9E=A5=20(varchar=2020/50=20=E2=86=92?= =?UTF-8?q?=20100)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- ...ype_category_on_trading_partners_table.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 database/migrations/2026_02_19_100000_extend_type_category_on_trading_partners_table.php diff --git a/database/migrations/2026_02_19_100000_extend_type_category_on_trading_partners_table.php b/database/migrations/2026_02_19_100000_extend_type_category_on_trading_partners_table.php new file mode 100644 index 0000000..ad53005 --- /dev/null +++ b/database/migrations/2026_02_19_100000_extend_type_category_on_trading_partners_table.php @@ -0,0 +1,24 @@ +string('type', 100)->default('vendor')->comment('업태')->change(); + $table->string('category', 100)->default('기타')->comment('종목')->change(); + }); + } + + public function down(): void + { + Schema::table('trading_partners', function (Blueprint $table) { + $table->string('type', 20)->default('vendor')->change(); + $table->string('category', 50)->default('기타')->change(); + }); + } +};