[SESSION] Session ID can be as long as 128 characters

这个提交包含在:
Alexei Sorokin 2020-08-17 13:58:19 +03:00 提交者 Diogo Peralta Cordeiro
父节点 ddc3371b43
当前提交 ed68659ece

查看文件

@ -58,7 +58,7 @@ class Session extends Managed_DataObject
{
return [
'fields' => [
'id' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'session ID'],
'id' => ['type' => 'varchar', 'length' => 128, 'not null' => true, 'description' => 'session ID'],
'session_data' => ['type' => 'text', 'description' => 'session data'],
'created' => ['type' => 'datetime', 'description' => 'date this record was created'],
'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'],