We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0be3c4 commit a743d8cCopy full SHA for a743d8c
session.md
@@ -44,7 +44,7 @@ When using the `database` session driver, you will need to create a table to con
44
45
Schema::create('sessions', function ($table) {
46
$table->string('id')->unique();
47
- $table->integer('user_id')->nullable();
+ $table->unsignedInteger('user_id')->nullable();
48
$table->string('ip_address', 45)->nullable();
49
$table->text('user_agent')->nullable();
50
$table->text('payload');
0 commit comments