From b80651519fba7c1439cacd970f33f2339fff8959 Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Sun, 2 Nov 2025 16:03:26 +0500 Subject: [PATCH] wip --- .../2025_10_29_181237_create_online_payments_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Modules/OnlinePayment/Database/Migrations/2025_10_29_181237_create_online_payments_table.php b/app/Modules/OnlinePayment/Database/Migrations/2025_10_29_181237_create_online_payments_table.php index 2d59df1..8ebc08c 100644 --- a/app/Modules/OnlinePayment/Database/Migrations/2025_10_29_181237_create_online_payments_table.php +++ b/app/Modules/OnlinePayment/Database/Migrations/2025_10_29_181237_create_online_payments_table.php @@ -12,6 +12,7 @@ return new class extends Migration public function up(): void { Schema::create('online_payments', function (Blueprint $table) { + $table->id(); $table->string('refunded_amount')->nullable(); $table->string('booking_number')->nullable()->index(); $table->string('amount')->nullable();