]> git.mxchange.org Git - friendica.git/commitdiff
Update database.sql according to process
authorHypolite Petovan <mrpetovan@gmail.com>
Mon, 5 Mar 2018 04:41:14 +0000 (23:41 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Mon, 5 Mar 2018 04:41:14 +0000 (23:41 -0500)
database.sql

index 7c4acc29f4a1f0170b31d9e3e08f2551ded5fbbb..0b2b01707561eff9e9e1523a3696d38274bcc760 100644 (file)
@@ -59,9 +59,9 @@ CREATE TABLE IF NOT EXISTS `cache` (
        `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',
-       PRIMARY KEY (`k`),
-       KEY `k_expires` (`k`,`expires`) USING BTREE
-) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Stores temporary data';
+        PRIMARY KEY(`k`),
+        INDEX `k_expires` (`k`,`expires`)
+) DEFAULT COLLATE utf8mb4_general_ci;
 
 --
 -- TABLE challenge