From 3e8570ac3f8aa5766920abb9673ee41ca15f782d Mon Sep 17 00:00:00 2001 From: pro Date: Tue, 27 Jan 2026 23:36:32 +0900 Subject: [PATCH] =?UTF-8?q?feat:sales=5Fprospects=20=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=EC=97=90=20business=5Fcard=5Fimage=20=EC=BB=AC?= =?UTF-8?q?=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.5 --- ...ss_card_image_to_sales_prospects_table.php | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 database/migrations/2026_01_27_234500_add_business_card_image_to_sales_prospects_table.php diff --git a/database/migrations/2026_01_27_234500_add_business_card_image_to_sales_prospects_table.php b/database/migrations/2026_01_27_234500_add_business_card_image_to_sales_prospects_table.php new file mode 100644 index 0000000..2007daf --- /dev/null +++ b/database/migrations/2026_01_27_234500_add_business_card_image_to_sales_prospects_table.php @@ -0,0 +1,29 @@ +string('business_card_image', 500)->nullable()->after('address') + ->comment('명함 이미지 파일 경로'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('sales_prospects', function (Blueprint $table) { + $table->dropColumn('business_card_image'); + }); + } +};