db support for starred (favorited) items
This commit is contained in:
parent
24836f2966
commit
07dc1c3ca9
4
boot.php
4
boot.php
|
@ -4,9 +4,9 @@ set_time_limit(0);
|
|||
ini_set('pcre.backtrack_limit', 250000);
|
||||
|
||||
|
||||
define ( 'FRIENDIKA_VERSION', '2.2.1028' );
|
||||
define ( 'FRIENDIKA_VERSION', '2.2.1029' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||
define ( 'DB_UPDATE_VERSION', 1072 );
|
||||
define ( 'DB_UPDATE_VERSION', 1073 );
|
||||
|
||||
define ( 'EOL', "<br />\r\n" );
|
||||
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
||||
|
|
|
@ -202,6 +202,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
`private` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`pubmail` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`visible` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`starred` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`unseen` tinyint(1) NOT NULL DEFAULT '1',
|
||||
`deleted` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`last-child` tinyint(1) unsigned NOT NULL DEFAULT '1',
|
||||
|
@ -218,6 +219,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
|||
KEY `edited` (`edited`),
|
||||
KEY `received` (`received`),
|
||||
KEY `visible` (`visible`),
|
||||
KEY `starred` (`starred`),
|
||||
KEY `deleted` (`deleted`),
|
||||
KEY `last-child` (`last-child`),
|
||||
KEY `unseen` (`unseen`),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
define( 'UPDATE_VERSION' , 1072 );
|
||||
define( 'UPDATE_VERSION' , 1073 );
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -580,3 +580,8 @@ function update_1071() {
|
|||
q("ALTER TABLE `photo` ADD INDEX ( `profile` ) ");
|
||||
|
||||
}
|
||||
|
||||
function update_1072() {
|
||||
q("ALTER TABLE `item` ADD `starred` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `visible` ");
|
||||
q("ALTER TABLE `item` ADD INDEX ( `starred` ) ");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue