From f7ad56c78b88dedfec1c07be2ea4bafe4a7f9ac9 Mon Sep 17 00:00:00 2001 From: Kevin <75578469+SMEWebify@users.noreply.github.com> Date: Sun, 24 Aug 2025 12:01:59 +0200 Subject: [PATCH] chore: remove outdated order site migrations --- ..._10_09_000000_create_order_sites_table.php | 34 ------------------- ..._create_order_site_implantations_table.php | 31 ----------------- 2 files changed, 65 deletions(-) delete mode 100644 database/migrations/2024_10_09_000000_create_order_sites_table.php delete mode 100644 database/migrations/2024_10_09_000001_create_order_site_implantations_table.php diff --git a/database/migrations/2024_10_09_000000_create_order_sites_table.php b/database/migrations/2024_10_09_000000_create_order_sites_table.php deleted file mode 100644 index 608a63e9..00000000 --- a/database/migrations/2024_10_09_000000_create_order_sites_table.php +++ /dev/null @@ -1,34 +0,0 @@ -id(); - $table->foreignId('orders_id')->constrained('orders')->onDelete('cascade'); - $table->string('name')->nullable(); - $table->string('adress')->nullable(); - $table->string('city')->nullable(); - $table->string('postal_code')->nullable(); - $table->text('description')->nullable(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('order_sites'); - } -}; - diff --git a/database/migrations/2024_10_09_000001_create_order_site_implantations_table.php b/database/migrations/2024_10_09_000001_create_order_site_implantations_table.php deleted file mode 100644 index 9f0bdf78..00000000 --- a/database/migrations/2024_10_09_000001_create_order_site_implantations_table.php +++ /dev/null @@ -1,31 +0,0 @@ -id(); - $table->foreignId('order_site_id')->constrained('order_sites')->onDelete('cascade'); - $table->string('name'); - $table->text('description')->nullable(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('order_site_implantations'); - } -}; -