We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4cd927 commit 6eb33e1Copy full SHA for 6eb33e1
src/Illuminate/Session/Console/stubs/database.stub
@@ -15,7 +15,7 @@ class CreateSessionsTable extends Migration
15
{
16
Schema::create('sessions', function (Blueprint $table) {
17
$table->string('id')->unique();
18
- $table->integer('user_id')->nullable();
+ $table->unsignedInteger('user_id')->nullable();
19
$table->string('ip_address', 45)->nullable();
20
$table->text('user_agent')->nullable();
21
$table->text('payload');
0 commit comments