Преглед на файлове

Revert "fix"

This reverts commit 49f8f793027d517e2ee4f1b94f0d0a6fe67fb920.
peterguo преди 1 седмица
родител
ревизия
bd5a7f335d
променени са 1 файла, в които са добавени 0 реда и са изтрити 27 реда
  1. 0 27
      database/migrations/2025_02_28_093611_create_llm_session_table.php~

+ 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');
-    }
-};