-- TABLE cache
--
CREATE TABLE IF NOT EXISTS `cache` (
- `k` varbinary(255) NOT NULL COMMENT 'cache key',
+ `k` varchar(255) NOT NULL COMMENT 'cache key',
`v` mediumtext COMMENT 'cached serialized value',
`expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
`updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache insertion',
Fields
------
-| Field | Description | Type | Null | Key | Default | Extra |
-| ------- | ---------------------------- | -------------- | ---- | --- | ------------------- | ----- |
-| k | cache key | varbinary(255) | NO | PRI | NULL | |
-| v | cached serialized value | mediumtext | YES | | NULL | |
-| expires | datetime of cache expiration | datetime | NO | | 0001-01-01 00:00:00 | |
-| updated | datetime of cache insertion | datetime | NO | | 0001-01-01 00:00:00 | |
+| Field | Description | Type | Null | Key | Default | Extra |
+| ------- | ---------------------------- | ------------ | ---- | --- | ------------------- | ----- |
+| k | cache key | varchar(255) | NO | PRI | NULL | |
+| v | cached serialized value | mediumtext | YES | | NULL | |
+| expires | datetime of cache expiration | datetime | NO | | 0001-01-01 00:00:00 | |
+| updated | datetime of cache insertion | datetime | NO | | 0001-01-01 00:00:00 | |
Indexes
------------
| info | | mediumtext | YES | | NULL | |
| notify_new_posts | | boolean | NO | | 0 | |
| fetch_further_information | | tinyint unsigned | NO | | 0 | |
-| ffi_keyword_blacklist | | text | YES | | NULL | |
+| ffi_keyword_blacklist | | text | YES | | NULL | |
| photo | Link to the profile photo of the contact | varbinary(383) | YES | | | |
| thumb | Link to the profile photo (thumb size) | varbinary(383) | YES | | | |
| micro | Link to the profile photo (micro size) | varbinary(383) | YES | | | |
| profile-id | Deprecated | int unsigned | YES | | NULL | |
Indexes
--------
+------------
| Name | Fields |
| --------------------------- | ------------------------------------ |