This commit is contained in:
2026-03-12 02:28:50 +05:00
parent 2bd2c45ddb
commit 03c692adbb
4 changed files with 80 additions and 15 deletions

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('ignore_sber_payments', function (Blueprint $table) {
$table->id();
$table->string('message')->index();
$table->unsignedBigInteger('payment_id')->index();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('ignore_sber_payments');
}
};