fix payments

This commit is contained in:
2024-09-02 18:05:31 +05:00
parent 061f09eca1
commit a068491050
3 changed files with 28 additions and 15 deletions

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::create('swift_payments', function (Blueprint $table) {
$table->uuid('id');
$table->id();
$table->string('type')->nullable();
$table->string('passport_name')->nullable();
$table->string('passport_surname')->nullable();
@@ -41,6 +41,6 @@ return new class extends Migration
*/
public function down(): void
{
//
Schema::dropIfExists('swift_payments');
}
};