aboutsummaryrefslogtreecommitdiffstats
path: root/install/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-10 15:56:59 -0700
committerfriendica <info@friendica.com>2013-09-10 15:56:59 -0700
commit5aaf8b8e9940d99befd00619238cd20c3894e5a9 (patch)
treeeb8b0af65106d58ed4aeb827789c6102d745bea6 /install/database.sql
parent58490a4a8098430ed32d0483638d1c6ea3e7ac49 (diff)
parentf93e92c260ca4ef248e5b079b1cd02a4a7d08d6c (diff)
downloadvolse-hubzilla-5aaf8b8e9940d99befd00619238cd20c3894e5a9.tar.gz
volse-hubzilla-5aaf8b8e9940d99befd00619238cd20c3894e5a9.tar.bz2
volse-hubzilla-5aaf8b8e9940d99befd00619238cd20c3894e5a9.zip
Merge pull request #126 from MicMee/master
extends DB in hubloc to maintain hubloc connectivity
Diffstat (limited to 'install/database.sql')
-rw-r--r--install/database.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql
index 9b1b6cad2..9ecbad5a6 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -367,6 +367,7 @@ CREATE TABLE IF NOT EXISTS `hubloc` (
`hubloc_hash` char(255) NOT NULL,
`hubloc_addr` char(255) NOT NULL DEFAULT '',
`hubloc_flags` int(10) unsigned NOT NULL DEFAULT '0',
+ `hubloc_status` int(10) unsigned NOT NULL DEFAULT '0',
`hubloc_url` char(255) NOT NULL DEFAULT '',
`hubloc_url_sig` text NOT NULL,
`hubloc_host` char(255) NOT NULL DEFAULT '',
@@ -379,6 +380,7 @@ CREATE TABLE IF NOT EXISTS `hubloc` (
KEY `hubloc_url` (`hubloc_url`),
KEY `hubloc_guid` (`hubloc_guid`),
KEY `hubloc_flags` (`hubloc_flags`),
+ KEY `hubloc_status` (`hubloc_status`),
KEY `hubloc_connect` (`hubloc_connect`),
KEY `hubloc_host` (`hubloc_host`),
KEY `hubloc_addr` (`hubloc_addr`),