mirror of
https://github.com/friendica/friendica
synced 2025-04-27 00:30:10 +00:00
put in config framework for auto-update ability, plugins, etc.
This commit is contained in:
parent
8f83c4ab64
commit
d763485752
3 changed files with 38 additions and 4 deletions
11
database.sql
11
database.sql
|
@ -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`
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue