This commit is contained in:
2025-05-24 14:27:43 +05:00
parent ebded8c39d
commit 778bd9030c
11 changed files with 386 additions and 212 deletions

View File

@@ -13,11 +13,18 @@ return new class extends Migration
{
Schema::create('card_transactions', function (Blueprint $table) {
$table->id();
$table->string('unique_id')->nullable()->unique();
$table->string('passport_serie');
$table->string('passport_number');
$table->string('card_number_masked');
$table->string('card_expire_date');
$table->string('passport_id');
$table->string('card_number');
$table->string('card_month');
$table->string('card_year');
$table->foreignId('user_id')->constrained('users')->restrictOnDelete();
$table->timestamps();
$table->softDeletes();
});
}