2018-04-16 00:01:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
2018-04-16 00:01:32 +00:00
|
|
|
|
|
|
|
class CreateSessionsTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('sessions', function (Blueprint $table) {
|
|
|
|
$table->string('id')->unique();
|
2018-05-20 02:56:20 +00:00
|
|
|
$table->bigInteger('user_id')->unsigned()->nullable();
|
2018-04-16 00:01:32 +00:00
|
|
|
$table->string('ip_address', 45)->nullable();
|
|
|
|
$table->text('user_agent')->nullable();
|
|
|
|
$table->text('payload');
|
|
|
|
$table->integer('last_activity');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('sessions');
|
|
|
|
}
|
|
|
|
}
|