This commit is contained in:
2025-09-09 10:48:46 +05:00
parent 7efad097ef
commit 4e1f286eb5
15 changed files with 64 additions and 31 deletions

View File

@@ -0,0 +1,28 @@
<?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::table('sber_payment_order_items', function (Blueprint $table) {
$table->boolean('synced_with_system')->nullable()->default(false);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('sber_payment_order_items', function (Blueprint $table) {
$table->dropColumn('synced_with_system');
});
}
};