Skip to content

Commit 2eef351

Browse files
authored
change payload column to long text in sessions table (#42782)
1 parent 2bc1802 commit 2eef351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Session/Console/stubs/database.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ return new class extends Migration
1818
$table->foreignId('user_id')->nullable()->index();
1919
$table->string('ip_address', 45)->nullable();
2020
$table->text('user_agent')->nullable();
21-
$table->text('payload');
21+
$table->longText('payload');
2222
$table->integer('last_activity')->index();
2323
});
2424
}

0 commit comments

Comments
 (0)