engelsystem/db/migrations/2018_09_11_000000_create_se...

30 lines
617 B
PHP
Raw Normal View History

2018-09-15 17:24:59 +02:00
<?php
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()
{
$this->schema->create('sessions', function (Blueprint $table) {
$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()
{
$this->schema->dropIfExists('sessions');
}
}