engelsystem/db/migrations/2018_09_11_000000_create_se...

32 lines
661 B
PHP
Raw Normal View History

2018-09-15 17:24:59 +02:00
<?php
declare(strict_types=1);
2018-10-24 13:35:31 +02:00
namespace Engelsystem\Migrations;
2018-09-15 17:24:59 +02:00
use Engelsystem\Database\Migration\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateSessionsTable extends Migration
{
/**
* Run the migration
*/
public function up(): void
2018-09-15 17:24:59 +02:00
{
$this->schema->create('sessions', function (Blueprint $table): void {
2018-09-15 17:24:59 +02:00
$table->string('id')->unique();
$table->text('payload');
$table->dateTime('last_activity')->useCurrent();
2018-09-15 17:24:59 +02:00
});
}
/**
* Reverse the migration
*/
public function down(): void
2018-09-15 17:24:59 +02:00
{
$this->schema->dropIfExists('sessions');
}
}