33 lines
444 B
PHP
33 lines
444 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateSessionTable extends Migration {
|
|
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('sessions', function($t)
|
|
{
|
|
$t->string('id')->unique();
|
|
$t->text('payload');
|
|
$t->integer('last_activity');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('sessions');
|
|
}
|
|
|
|
}
|