From a0747799fcbec42862333611026baccfc8bcacdc Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 22 Jun 2014 03:39:43 -0700 Subject: likes table for liking things besides posts and comments --- boot.php | 2 +- install/database.sql | 16 ++++++++++++++++ install/update.php | 24 +++++++++++++++++++++++- version.inc | 2 +- 4 files changed, 41 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 3855ecd58..3a9f93d5e 100755 --- a/boot.php +++ b/boot.php @@ -47,7 +47,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1112 ); +define ( 'DB_UPDATE_VERSION', 1113 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/install/database.sql b/install/database.sql index 82c96019e..388bfdfd2 100644 --- a/install/database.sql +++ b/install/database.sql @@ -573,6 +573,22 @@ CREATE TABLE IF NOT EXISTS `item_id` ( KEY `iid` (`iid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `likes` ( + `id` int(10) unsigned NOT NULL AUTO_INCREMENT, + `liker` char(128) NOT NULL DEFAULT '', + `likee` char(128) NOT NULL DEFAULT '', + `iid` int(11) NOT NULL DEFAULT '0', + `verb` char(255) NOT NULL DEFAULT '', + `target_type` char(255) NOT NULL DEFAULT '', + `target` mediumtext NOT NULL, + PRIMARY KEY (`id`), + KEY `liker` (`liker`), + KEY `likee` (`likee`), + KEY `iid` (`iid`), + KEY `verb` (`verb`), + KEY `target_type` (`target_type`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `mail` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `mail_flags` int(10) unsigned NOT NULL DEFAULT '0', diff --git a/install/update.php b/install/update.php index 0d5d26237..4981acc5d 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@