From 4062be28699eb5fba93ff43ffb4d3e9ed7c4af6c Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 5 Mar 2013 21:00:25 -0800 Subject: basic friend suggestions (but not "new to the network and have no friends at all" suggestions) --- install/database.sql | 9 +++++++++ install/update.php | 25 +++++++++++++++++++------ 2 files changed, 28 insertions(+), 6 deletions(-) (limited to 'install') diff --git a/install/database.sql b/install/database.sql index 31c5b441a..0262bce63 100644 --- a/install/database.sql +++ b/install/database.sql @@ -909,6 +909,15 @@ CREATE TABLE IF NOT EXISTS `xchan` ( KEY `xchan_connurl` (`xchan_connurl`) ) 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', + `xchan` char(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `uid` (`uid`), + KEY `xchan` (`xchan`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `xlink` ( `xlink_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `xlink_xchan` char(255) NOT NULL DEFAULT '', diff --git a/install/update.php b/install/update.php index 944841c41..afb4b08b9 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@