diff options
author | friendica <info@friendica.com> | 2013-02-15 22:34:01 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-15 22:34:01 -0800 |
commit | e754845c80e3bf038d808c6502cf3dec5880e1f6 (patch) | |
tree | 818e54f307e1de5ded24613da18099ff7d40406d /install/database.sql | |
parent | ace1104d08715ffb4d7ada722adeb53206236a50 (diff) | |
download | volse-hubzilla-e754845c80e3bf038d808c6502cf3dec5880e1f6.tar.gz volse-hubzilla-e754845c80e3bf038d808c6502cf3dec5880e1f6.tar.bz2 volse-hubzilla-e754845c80e3bf038d808c6502cf3dec5880e1f6.zip |
add rating support to poco
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql index 03279d6aa..3deb96c21 100644 --- a/install/database.sql +++ b/install/database.sql @@ -892,11 +892,13 @@ CREATE TABLE IF NOT EXISTS `xlink` ( `xlink_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `xlink_xchan` char(255) NOT NULL DEFAULT '', `xlink_link` char(255) NOT NULL DEFAULT '', + `xlink_rating` int(11) NOT NULL DEFAULT '0', `xlink_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`xlink_id`), KEY `xlink_xchan` (`xlink_xchan`), KEY `xlink_link` (`xlink_link`), - KEY `xlink_updated` (`xlink_updated`) + KEY `xlink_updated` (`xlink_updated`), + KEY `xlink_rating` (`xlink_rating`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `xprof` ( |