From 80c1e4aeae13ecc85ec3d789d1607bf4252a8d58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sat, 14 Feb 2026 10:48:27 +0900 Subject: [PATCH] =?UTF-8?q?feat:sales=5Fpartners=20=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=EC=97=90=20=EC=83=81=ED=98=B8/=EC=82=AC=EC=97=85?= =?UTF-8?q?=EC=9E=90=EB=93=B1=EB=A1=9D=EB=B2=88=ED=98=B8/=EC=A3=BC?= =?UTF-8?q?=EC=86=8C=20=EC=BB=AC=EB=9F=BC=20=EC=B6=94=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 --- ..._business_info_to_sales_partners_table.php | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 database/migrations/2026_02_14_100000_add_business_info_to_sales_partners_table.php diff --git a/database/migrations/2026_02_14_100000_add_business_info_to_sales_partners_table.php b/database/migrations/2026_02_14_100000_add_business_info_to_sales_partners_table.php new file mode 100644 index 0000000..d279d5e --- /dev/null +++ b/database/migrations/2026_02_14_100000_add_business_info_to_sales_partners_table.php @@ -0,0 +1,24 @@ +string('company_name', 100)->nullable()->after('notes')->comment('상호'); + $table->string('biz_no', 20)->nullable()->after('company_name')->comment('사업자등록번호'); + $table->string('address', 255)->nullable()->after('biz_no')->comment('주소'); + }); + } + + public function down(): void + { + Schema::table('sales_partners', function (Blueprint $table) { + $table->dropColumn(['company_name', 'biz_no', 'address']); + }); + } +};