From 00d64e149a489565d4c09f476a8d09acd008101a Mon Sep 17 00:00:00 2001 From: aslan Date: Fri, 19 Jan 2024 19:15:51 +0300 Subject: [PATCH] add resource Documents Online --- ...hp => 2024_01_18_082251_create_online_documents_table.php} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename database/migrations/{2024_01_18_082251_create_documents_online_table.php => 2024_01_18_082251_create_online_documents_table.php} (83%) diff --git a/database/migrations/2024_01_18_082251_create_documents_online_table.php b/database/migrations/2024_01_18_082251_create_online_documents_table.php similarity index 83% rename from database/migrations/2024_01_18_082251_create_documents_online_table.php rename to database/migrations/2024_01_18_082251_create_online_documents_table.php index b8f92e5..7d3240a 100644 --- a/database/migrations/2024_01_18_082251_create_documents_online_table.php +++ b/database/migrations/2024_01_18_082251_create_online_documents_table.php @@ -11,7 +11,7 @@ return new class extends Migration */ public function up(): void { - Schema::create('documents_online', function (Blueprint $table) { + Schema::create('online_documents', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('url'); @@ -26,6 +26,6 @@ return new class extends Migration */ public function down(): void { - Schema::dropIfExists('documents_online'); + Schema::dropIfExists('online_documents'); } };