Index: tabase/migrations/2025_03_13_184433_create_buyers_table.php
===================================================================
--- database/migrations/2025_03_13_184433_create_buyers_table.php	(revision a30e379b0f8e1753e754eeaf5d06fe13f5a2e7cb)
+++ 	(revision )
@@ -1,33 +1,0 @@
-<?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::create('buyers', function (Blueprint $table) {
-            $table->uuid('id')->primary();
-
-            $table->string('client_name');
-            $table->string('billing_address');
-            $table->string('country');
-            $table->string('registration_number');
-            $table->string('tax_id');
-            $table->timestamps();
-        });
-    }
-
-    /**
-     * Reverse the migrations.
-     */
-    public function down(): void
-    {
-        Schema::dropIfExists('buyers');
-    }
-};
Index: tabase/migrations/2025_03_13_192448_create_receivers_table.php
===================================================================
--- database/migrations/2025_03_13_192448_create_receivers_table.php	(revision a30e379b0f8e1753e754eeaf5d06fe13f5a2e7cb)
+++ 	(revision )
@@ -1,32 +1,0 @@
-<?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::create('receivers', function (Blueprint $table) {
-            $table->uuid('id')->primary();
-            $table->string('client_name');
-            $table->string('contact_person');
-            $table->string('country');
-            $table->string('phone_number');
-            $table->string('shipping_address');
-            $table->timestamps();
-        });
-    }
-
-    /**
-     * Reverse the migrations.
-     */
-    public function down(): void
-    {
-        Schema::dropIfExists('receivers');
-    }
-};
