From d7fd8ebd3d63954ac3bcd926a9da3fc6980d4e02 Mon Sep 17 00:00:00 2001 From: Alexandr Chernyaev Date: Thu, 14 Mar 2024 02:31:20 +0300 Subject: [PATCH] Delete database/migrations/2024_03_05_005223_create_documentation_sections_table.php --- ...23_create_documentation_sections_table.php | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100755 database/migrations/2024_03_05_005223_create_documentation_sections_table.php diff --git a/database/migrations/2024_03_05_005223_create_documentation_sections_table.php b/database/migrations/2024_03_05_005223_create_documentation_sections_table.php deleted file mode 100755 index 51611b30..00000000 --- a/database/migrations/2024_03_05_005223_create_documentation_sections_table.php +++ /dev/null @@ -1,32 +0,0 @@ -uuid('id'); - $table->string('title'); - $table->string('slug'); - $table->text('content'); - $table->string('file'); - $table->string('version'); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('documentation_sections'); - } -};