I don't know how to maintain and work with sessions. As I am a newbie in Laravel 4.
I have created a table as follows:
class Sessions extends Migration
{
Schema::create('sessions', function($table)
{
$table->string('id')->unique();
$table->text('payload');
$table->integer('last_activity');
});
}
Is this correct?