feat:sales_tenant_managements 테이블에 handover_at 컬럼 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-19 16:27:10 +09:00
parent 1f848ad291
commit f1dc2d8bbe

View File

@@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('sales_tenant_managements', function (Blueprint $table) {
$table->datetime('handover_at')->nullable()->after('hq_status');
});
}
public function down(): void
{
Schema::table('sales_tenant_managements', function (Blueprint $table) {
$table->dropColumn('handover_at');
});
}
};