Merge branch 'master' into tasks

This commit is contained in:
Michael Cook (mackal)
2018-07-08 01:47:11 -04:00
16 changed files with 253 additions and 4 deletions
@@ -0,0 +1,8 @@
CREATE TABLE `data_buckets` (
`id` bigint(11) unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(100) DEFAULT NULL,
`value` text,
`expires` int(11) unsigned DEFAULT '0',
PRIMARY KEY (`id`),
KEY `key_index` (`key`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;