diff options
author | friendica <info@friendica.com> | 2013-03-15 15:36:58 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-15 15:36:58 -0700 |
commit | 5a29f511c1fa609f58f50d9148edd1fe77b23d9d (patch) | |
tree | 051fb42269c958595db67c8a4204dd4c5d972970 /install/database.sql | |
parent | 62f61a559abe97b659754658e9a266c7c8873d3e (diff) | |
download | volse-hubzilla-5a29f511c1fa609f58f50d9148edd1fe77b23d9d.tar.gz volse-hubzilla-5a29f511c1fa609f58f50d9148edd1fe77b23d9d.tar.bz2 volse-hubzilla-5a29f511c1fa609f58f50d9148edd1fe77b23d9d.zip |
add xconfig table and functions, update strings and doco
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 4f503fc12..c321af401 100644 --- a/install/database.sql +++ b/install/database.sql @@ -889,6 +889,18 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_connurl` (`xchan_connurl`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `xconfig` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `xchan` char(255) NOT NULL, + `cat` char(255) NOT NULL, + `k` char(255) NOT NULL, + `v` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `xchan` (`xchan`), + KEY `cat` (`cat`), + KEY `k` (`k`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `xign` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0', |