This commit is contained in:
2024-11-25 21:40:27 +05:00
parent 4ff50594e3
commit e5834c514c

View File

@@ -13,7 +13,7 @@ return new class extends Migration
{ {
Schema::create('sber_payment_order_items', function (Blueprint $table) { Schema::create('sber_payment_order_items', function (Blueprint $table) {
$table->id(); $table->id();
$table->foreignId('sber_payment_order_id')->constrained('visa_master_payment_orders')->nullOnDelete(); $table->foreignId('sber_payment_order_id')->constrained('sber_payment_orders')->nullOnDelete();
$table->foreignId('online_payment_history_id')->nullable()->constrained('online_payment_histories')->nullOnDelete(); $table->foreignId('online_payment_history_id')->nullable()->constrained('online_payment_histories')->nullOnDelete();
$table->string('payer_name')->nullable(); $table->string('payer_name')->nullable();