'Stores user variables.', 'fields' => array( 'uid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, 'description' => 'User {users}.uid.', ), 'sid' => array( 'description' => 'A session ID. The value is generated by PHP`s Session API.', 'type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => '' ), 'name' => array( 'description' => 'The name of the variable.', 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => '' ), 'value' => array( 'description' => 'The value of the variable.', 'type' => 'text', 'not null' => TRUE, 'size' => 'big' ), 'expired' => array( 'type' => 'int', 'description' => 'Time to which the variable is valid.', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0 ), 'common' => array( 'type' => 'int', 'description' => 'Common variable.', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0 ), ), ); return $schema; }