From 6d4e5b740bb6b63577f5e961129bf32f8807798d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Fri, 13 Feb 2026 11:22:10 +0900 Subject: [PATCH] =?UTF-8?q?feat:=EA=B1=B0=EB=9E=98=EC=B2=98=20=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EB=B8=94=EC=97=90=20=EB=8C=80=ED=91=9C=EC=9E=90(ceo),?= =?UTF-8?q?=20=EC=A3=BC=EC=86=8C(address)=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- ..._ceo_address_to_trading_partners_table.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 database/migrations/2026_02_13_150000_add_ceo_address_to_trading_partners_table.php diff --git a/database/migrations/2026_02_13_150000_add_ceo_address_to_trading_partners_table.php b/database/migrations/2026_02_13_150000_add_ceo_address_to_trading_partners_table.php new file mode 100644 index 0000000..c88026f --- /dev/null +++ b/database/migrations/2026_02_13_150000_add_ceo_address_to_trading_partners_table.php @@ -0,0 +1,23 @@ +string('ceo', 50)->nullable()->after('biz_no')->comment('대표자'); + $table->string('address', 255)->nullable()->after('email')->comment('주소'); + }); + } + + public function down(): void + { + Schema::table('trading_partners', function (Blueprint $table) { + $table->dropColumn(['ceo', 'address']); + }); + } +};