table migration fix
This commit is contained in:
@@ -16,7 +16,7 @@ class CreateSessionsTable extends Migration
|
||||
if(!Schema::hasTable('sessions')) {
|
||||
Schema::create('sessions', function (Blueprint $table) {
|
||||
$table->string('id')->unique();
|
||||
$table->unisgnedInteger('user_id')->nullable();
|
||||
$table->unsignedInteger('user_id')->nullable();
|
||||
$table->string('ip_address', 45)->nullable();
|
||||
$table->text('user_agent')->nullable();
|
||||
$table->text('payload');
|
||||
|
||||
Reference in New Issue
Block a user