This commit is contained in:
2023-06-13 11:33:42 +07:00
parent cbc7dfdb99
commit 8f532e655f
10 changed files with 320 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ return new class extends Migration
Schema::table('claim_requests', function (Blueprint $table) {
//
$table->string('service_code')->after('payment_type')->nullable();
$table->string('policy_id')->after('service_code')->nullable();
$table->unsignedBigInteger('policy_id')->after('service_code')->nullable();
});
}