wip
This commit is contained in:
@@ -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();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user