This commit is contained in:
2025-09-08 11:55:05 +05:00
parent 9c236aa8a8
commit ea9b028c23
3 changed files with 77 additions and 36 deletions

View File

@@ -0,0 +1,34 @@
<?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_orders', function (Blueprint $table) {
$table->string('sender_full_name')->nullable();
$table->string('sender_passport_serie')->nullable();
$table->string('sender_passport_number')->nullable();
$table->string('sender_deposit_account')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('sber_payment_orders', function (Blueprint $table) {
$table->dropColumn('sender_full_name');
$table->dropColumn('sender_passport_serie');
$table->dropColumn('sender_passport_number');
$table->dropColumn('sender_deposit_account');
});
}
};