feat:sales_prospects 테이블에 신분증/통장사본 컬럼 추가

- id_card_image: 신분증 사본 이미지 경로
- bankbook_image: 통장 사본 이미지 경로

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-27 23:42:20 +09:00
parent 3e8570ac3f
commit a88f8a2021

View File

@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('sales_prospects', function (Blueprint $table) {
$table->string('id_card_image', 500)->nullable()->after('business_card_image')
->comment('신분증 사본 이미지 파일 경로');
$table->string('bankbook_image', 500)->nullable()->after('id_card_image')
->comment('통장 사본 이미지 파일 경로');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('sales_prospects', function (Blueprint $table) {
$table->dropColumn(['id_card_image', 'bankbook_image']);
});
}
};