This commit is contained in:
2025-05-23 18:47:34 +05:00
parent 7433f2125c
commit ebded8c39d
3 changed files with 34 additions and 8 deletions

View File

@@ -13,6 +13,10 @@ return new class extends Migration
{
Schema::create('card_transactions', function (Blueprint $table) {
$table->id();
$table->string('passport_serie');
$table->string('passport_number');
$table->string('card_number_masked');
$table->string('card_expire_date');
$table->timestamps();
});
}