From a51fc14e69c626aa683db4d5e45a7ff6106752a7 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 21 Jun 2011 18:03:54 -0700 Subject: [PATCH] structures for friend suggestions --- boot.php | 2 +- database.sql | 1 + update.php | 7 ++++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 49120b7cd1..9700c012dd 100644 --- a/boot.php +++ b/boot.php @@ -6,7 +6,7 @@ ini_set('pcre.backtrack_limit', 250000); define ( 'FRIENDIKA_VERSION', '2.2.1018' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); -define ( 'DB_UPDATE_VERSION', 1065 ); +define ( 'DB_UPDATE_VERSION', 1066 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/database.sql b/database.sql index e248b6b3d5..284ab0afc8 100644 --- a/database.sql +++ b/database.sql @@ -139,6 +139,7 @@ CREATE TABLE IF NOT EXISTS `group_member` ( CREATE TABLE IF NOT EXISTS `intro` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL, + `fid` int(11) NOT NULL DEFAULT '0', `contact-id` int(11) NOT NULL, `knowyou` tinyint(1) NOT NULL, `duplex` tinyint(1) NOT NULL DEFAULT '0', diff --git a/update.php b/update.php index 5953956732..8edd2aa920 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@