diff options
author | friendica <info@friendica.com> | 2014-06-22 03:39:43 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-06-22 03:39:43 -0700 |
commit | a0747799fcbec42862333611026baccfc8bcacdc (patch) | |
tree | 9b364e5937e6c26dc9fde3e5f410239972fbf816 /install/database.sql | |
parent | a175c7dba7e6ceb3823cfb9de8d8b74355e9da57 (diff) | |
download | volse-hubzilla-a0747799fcbec42862333611026baccfc8bcacdc.tar.gz volse-hubzilla-a0747799fcbec42862333611026baccfc8bcacdc.tar.bz2 volse-hubzilla-a0747799fcbec42862333611026baccfc8bcacdc.zip |
likes table for liking things besides posts and comments
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 16 |
1 files changed, 16 insertions, 0 deletions
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', |