Skip to content

Commit

Permalink
increase session agent column size, bcosca/fatfree#931
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkez committed Jun 27, 2016
1 parent d9dfb50 commit 0083673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/sql/session.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function __construct(\DB\SQL $db,$table='sessions',$force=TRUE,$onsuspect=NULL,$
$tab.$db->quotekey('session_id').' VARCHAR(40),'.$eol.
$tab.$db->quotekey('data').' TEXT,'.$eol.
$tab.$db->quotekey('ip').' VARCHAR(40),'.$eol.
$tab.$db->quotekey('agent').' VARCHAR(255),'.$eol.
$tab.$db->quotekey('agent').' VARCHAR(300),'.$eol.
$tab.$db->quotekey('stamp').' INTEGER,'.$eol.
$tab.'PRIMARY KEY ('.$db->quotekey('session_id').')'.$eol.
');'
Expand Down

0 comments on commit 0083673

Please sign in to comment.