put in config framework for auto-update ability, plugins, etc.

This commit is contained in:
Mike Macgirvin 2010-08-14 18:11:36 -07:00
parent 8f83c4ab64
commit d763485752
3 changed files with 38 additions and 4 deletions

View file

@ -32,6 +32,17 @@ CREATE TABLE IF NOT EXISTS `challenge` (
-- --------------------------------------------------------
CREATE TABLE IF NOT EXISTS `config` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cat` char(255) NOT NULL,
`k` char(255) NOT NULL,
`v` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MYISAM DEFAULT CHARSET=utf8;
--
-- Table structure for table `contact`
--