Forráskód Böngészése

Revert "fix"

This reverts commit 49f8f793027d517e2ee4f1b94f0d0a6fe67fb920.
peterguo 1 hete
szülő
commit
bd5a7f335d

+ 0 - 27
database/migrations/2025_02_28_093611_create_llm_session_table.php~

@@ -1,27 +0,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('llm_session', function (Blueprint $table) {
-            $table->id();
-            $table->timestamps();
-        });
-    }
-
-    /**
-     * Reverse the migrations.
-     */
-    public function down(): void
-    {
-        Schema::dropIfExists('llm_session');
-    }
-};