Files
HeimerdingerLoL/database/migrations/2024_03_18_170123_create_sessions_table.php
Rico van Zelst 58a1b50674 Remove "anhskohbo/no-captcha" and "dolejska-daniel/riot-api" deps
- Remove deprecated dependencies, update package versions, and add a new repository URL.
2024-03-18 18:06:23 +01:00

32 lines
787 B
PHP

<?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('sessions', function (Blueprint $table) {
$table->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');
}
};