diff --git a/database/migrations/2026_02_19_000001_add_handover_at_to_sales_tenant_managements.php b/database/migrations/2026_02_19_000001_add_handover_at_to_sales_tenant_managements.php new file mode 100644 index 0000000..ed7b789 --- /dev/null +++ b/database/migrations/2026_02_19_000001_add_handover_at_to_sales_tenant_managements.php @@ -0,0 +1,22 @@ +datetime('handover_at')->nullable()->after('hq_status'); + }); + } + + public function down(): void + { + Schema::table('sales_tenant_managements', function (Blueprint $table) { + $table->dropColumn('handover_at'); + }); + } +};