This commit is contained in:
2025-11-13 00:13:29 +05:00
parent 7bdd5243bd
commit 31ab39b21c
8 changed files with 246 additions and 212 deletions

View File

@@ -46,7 +46,7 @@ return new class extends Migration
$table->string('reciever_passport_number')->nullable();
$table->string('reciever_deposit_account')->nullable();
$table->boolean('paid')->default(true);
$table->boolean('paid')->default(false);
$table->softDeletes();
$table->timestamps();
@@ -58,6 +58,6 @@ return new class extends Migration
*/
public function down(): void
{
//
Schema::dropIfExists('visa_master_payment_orders');
}
};