This commit is contained in:
2025-09-08 13:48:53 +05:00
parent ee555e899c
commit 3ad4a3b86b
2 changed files with 39 additions and 5 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('visa_master_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('visa_master_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');
});
}
};