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'); + }); + } +};