diff options
author | friendica <info@friendica.com> | 2014-08-22 21:37:08 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-22 21:37:08 -0700 |
commit | 9196c9eef091e7f4a41fbc9452521d6ca2de55a3 (patch) | |
tree | 409292976fe0b3ea818a3f807835883056a09199 /install/database.sql | |
parent | 255ab8e9c9b86c7d38e03eb0d4913a823086366d (diff) | |
download | volse-hubzilla-9196c9eef091e7f4a41fbc9452521d6ca2de55a3.tar.gz volse-hubzilla-9196c9eef091e7f4a41fbc9452521d6ca2de55a3.tar.bz2 volse-hubzilla-9196c9eef091e7f4a41fbc9452521d6ca2de55a3.zip |
We really can't do this without a hubloc. I was hoping we could, but notifier is setup to take hublocs, not xchans.
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 2791f94be..104f145e5 100644 --- a/install/database.sql +++ b/install/database.sql @@ -442,6 +442,7 @@ CREATE TABLE IF NOT EXISTS `hubloc` ( `hubloc_guid_sig` text NOT NULL, `hubloc_hash` char(255) NOT NULL, `hubloc_addr` char(255) NOT NULL DEFAULT '', + `hubloc_network` char(32) 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 '', @@ -459,6 +460,7 @@ CREATE TABLE IF NOT EXISTS `hubloc` ( KEY `hubloc_connect` (`hubloc_connect`), KEY `hubloc_host` (`hubloc_host`), KEY `hubloc_addr` (`hubloc_addr`), + KEY `hubloc_network` (`hubloc_network`), KEY `hubloc_updated` (`hubloc_updated`), KEY `hubloc_connected` (`hubloc_connected`), KEY `hubloc_status` (`hubloc_status`) |