2024-10-15 19:30:20 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
return new class extends Migration
|
|
|
|
{
|
|
|
|
public function up(): void
|
|
|
|
{
|
|
|
|
Schema::create('users', function (Blueprint $table) {
|
|
|
|
$table->id();
|
2024-10-16 21:51:52 +03:00
|
|
|
$table->string('name')->unique();
|
2024-10-15 19:30:20 +03:00
|
|
|
$table->string('password');
|
|
|
|
$table->rememberToken();
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public function down(): void
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('users');
|
|
|
|
Schema::dropIfExists('sessions');
|
|
|
|
}
|
|
|
|
};
|