mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
Update database.sql according to process
This commit is contained in:
parent
47b1e4b3ee
commit
f94134f556
1 changed files with 3 additions and 3 deletions
|
@ -59,9 +59,9 @@ CREATE TABLE IF NOT EXISTS `cache` (
|
||||||
`v` mediumtext COMMENT 'cached serialized value',
|
`v` mediumtext COMMENT 'cached serialized value',
|
||||||
`expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache expiration',
|
`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',
|
`updated` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'datetime of cache insertion',
|
||||||
PRIMARY KEY (`k`),
|
PRIMARY KEY(`k`),
|
||||||
KEY `k_expires` (`k`,`expires`) USING BTREE
|
INDEX `k_expires` (`k`,`expires`)
|
||||||
) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Stores temporary data';
|
) DEFAULT COLLATE utf8mb4_general_ci;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- TABLE challenge
|
-- TABLE challenge
|
||||||
|
|
Loading…
Reference in a new issue