aboutsummaryrefslogtreecommitdiffstats
path: root/install/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-01 01:57:20 -0800
committerfriendica <info@friendica.com>2013-01-01 01:57:20 -0800
commit93d85858d556e64fa86befa859ee01241a0a2754 (patch)
tree452c7c63e3555794458e2af8090197f9b49837be /install/database.sql
parent6accc190d4041c1dd859f36560f93a019ce197ee (diff)
downloadvolse-hubzilla-93d85858d556e64fa86befa859ee01241a0a2754.tar.gz
volse-hubzilla-93d85858d556e64fa86befa859ee01241a0a2754.tar.bz2
volse-hubzilla-93d85858d556e64fa86befa859ee01241a0a2754.zip
poco discovery
Diffstat (limited to 'install/database.sql')
-rw-r--r--install/database.sql9
1 files changed, 4 insertions, 5 deletions
diff --git a/install/database.sql b/install/database.sql
index cab10005e..6876514f2 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -756,10 +756,7 @@ CREATE TABLE IF NOT EXISTS `site` (
PRIMARY KEY (`site_url`),
KEY `site_flags` (`site_flags`),
KEY `site_update` (`site_update`),
- KEY `site_directory` (`site_directory`),
- KEY `site_flags_2` (`site_flags`),
- KEY `site_update_2` (`site_update`),
- KEY `site_directory_2` (`site_directory`)
+ KEY `site_directory` (`site_directory`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `spam` (
@@ -833,6 +830,7 @@ CREATE TABLE IF NOT EXISTS `xchan` (
`xchan_photo_s` char(255) NOT NULL DEFAULT '',
`xchan_addr` char(255) NOT NULL DEFAULT '',
`xchan_url` char(255) NOT NULL DEFAULT '',
+ `xchan_connurl` char(255) NOT NULL DEFAULT '',
`xchan_name` char(255) NOT NULL DEFAULT '',
`xchan_network` char(255) NOT NULL DEFAULT '',
`xchan_flags` int(10) unsigned NOT NULL DEFAULT '0',
@@ -844,7 +842,8 @@ CREATE TABLE IF NOT EXISTS `xchan` (
KEY `xchan_name` (`xchan_name`),
KEY `xchan_network` (`xchan_network`),
KEY `xchan_url` (`xchan_url`),
- KEY `xchan_flags` (`xchan_flags`)
+ KEY `xchan_flags` (`xchan_flags`),
+ KEY `xchan_connurl` (`xchan_connurl`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `xprof` (