diff --git a/database/migrations/2025_01_08_212035_create_sessions_table.php b/database/migrations/2025_01_08_212035_create_sessions_table.php deleted file mode 100644 index 672d393d..00000000 --- a/database/migrations/2025_01_08_212035_create_sessions_table.php +++ /dev/null @@ -1,39 +0,0 @@ -string('id')->primary(); - $table->foreignId('user_id')->nullable()->index(); - $table->string('ip_address', 45)->nullable(); - $table->text('user_agent')->nullable(); - $table->longText('payload'); - $table->integer('last_activity')->index(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('sessions'); - } -};