diff --git a/database/migrations/2025_01_08_212029_create_cache_table.php b/database/migrations/2025_01_08_212029_create_cache_table.php deleted file mode 100644 index 1e06f5ce..00000000 --- a/database/migrations/2025_01_08_212029_create_cache_table.php +++ /dev/null @@ -1,43 +0,0 @@ -string('key')->primary(); - $table->mediumText('value'); - $table->integer('expiration'); - }); - - Schema::create('cache_locks', function (Blueprint $table) { - $table->string('key')->primary(); - $table->string('owner'); - $table->integer('expiration'); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('cache'); - Schema::dropIfExists('cache_locks'); - } -};