diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.install | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 6c44e0c43..434787605 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1414,14 +1414,14 @@ function system_schema() { 'not null' => TRUE, ), 'sid' => array( - 'description' => "Primary key: A session ID. The value is generated by PHP's Session API.", + 'description' => "A session ID. The value is generated by PHP's Session API.", 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '', ), 'ssid' => array( - 'description' => "Unique key: Secure session ID. The value is generated by PHP's Session API.", + 'description' => "Secure session ID. The value is generated by PHP's Session API.", 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, @@ -1460,6 +1460,7 @@ function system_schema() { 'indexes' => array( 'timestamp' => array('timestamp'), 'uid' => array('uid'), + 'ssid' => array('ssid'), ), 'foreign keys' => array( 'uid' => array('users' => 'uid'), |