mirror of
https://github.com/friendica/friendica
synced 2024-11-18 03:43:40 +00:00
Updated database.sql file, further code cleanup
This commit is contained in:
parent
214f381e81
commit
2f49e984bd
2 changed files with 5 additions and 5 deletions
|
@ -338,6 +338,8 @@ CREATE TABLE IF NOT EXISTS `gcontact` (
|
||||||
`nsfw` tinyint(1) NOT NULL DEFAULT 0,
|
`nsfw` tinyint(1) NOT NULL DEFAULT 0,
|
||||||
`network` varchar(255) NOT NULL DEFAULT '',
|
`network` varchar(255) NOT NULL DEFAULT '',
|
||||||
`addr` varchar(255) NOT NULL DEFAULT '',
|
`addr` varchar(255) NOT NULL DEFAULT '',
|
||||||
|
`notify` text NOT NULL,
|
||||||
|
`alias` varchar(255) NOT NULL DEFAULT '',
|
||||||
`generation` tinyint(3) NOT NULL DEFAULT 0,
|
`generation` tinyint(3) NOT NULL DEFAULT 0,
|
||||||
`server_url` varchar(255) NOT NULL DEFAULT '',
|
`server_url` varchar(255) NOT NULL DEFAULT '',
|
||||||
PRIMARY KEY(`id`),
|
PRIMARY KEY(`id`),
|
||||||
|
@ -539,7 +541,7 @@ CREATE TABLE IF NOT EXISTS `item` (
|
||||||
INDEX `uid_thrparent` (`uid`,`thr-parent`),
|
INDEX `uid_thrparent` (`uid`,`thr-parent`),
|
||||||
INDEX `uid_parenturi` (`uid`,`parent-uri`),
|
INDEX `uid_parenturi` (`uid`,`parent-uri`),
|
||||||
INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
|
INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
|
||||||
INDEX `uid_gcontactid_created` (`uid`,`gcontact-id`,`created`),
|
INDEX `gcontactid_uid_created` (`gcontact-id`,`uid`,`created`),
|
||||||
INDEX `wall_body` (`wall`,`body`(6)),
|
INDEX `wall_body` (`wall`,`body`(6)),
|
||||||
INDEX `uid_visible_moderated_created` (`uid`,`visible`,`moderated`,`created`),
|
INDEX `uid_visible_moderated_created` (`uid`,`visible`,`moderated`,`created`),
|
||||||
INDEX `uid_uri` (`uid`,`uri`),
|
INDEX `uid_uri` (`uid`,`uri`),
|
||||||
|
@ -986,6 +988,8 @@ CREATE TABLE IF NOT EXISTS `thread` (
|
||||||
INDEX `uid_network_created` (`uid`,`network`,`created`),
|
INDEX `uid_network_created` (`uid`,`network`,`created`),
|
||||||
INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
|
INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
|
||||||
INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
|
INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
|
||||||
|
INDEX `uid_gcontactid_commented` (`uid`,`gcontact-id`,`commented`),
|
||||||
|
INDEX `uid_gcontactid_created` (`uid`,`gcontact-id`,`created`),
|
||||||
INDEX `wall_private_received` (`wall`,`private`,`received`),
|
INDEX `wall_private_received` (`wall`,`private`,`received`),
|
||||||
INDEX `uid_created` (`uid`,`created`),
|
INDEX `uid_created` (`uid`,`created`),
|
||||||
INDEX `uid_commented` (`uid`,`commented`)
|
INDEX `uid_commented` (`uid`,`commented`)
|
||||||
|
|
|
@ -588,10 +588,6 @@ function network_content(&$a, $update = 0) {
|
||||||
intval($cid)
|
intval($cid)
|
||||||
);
|
);
|
||||||
if(count($r)) {
|
if(count($r)) {
|
||||||
//$sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item`
|
|
||||||
// WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." AND `deleted` = 0
|
|
||||||
// ORDER BY `item`.`received` DESC) AS `temp1`
|
|
||||||
// ON $sql_table.$sql_parent = `temp1`.`parent` ";
|
|
||||||
$sql_extra = " AND ".$sql_table.".`contact-id` = ".intval($cid);
|
$sql_extra = " AND ".$sql_table.".`contact-id` = ".intval($cid);
|
||||||
|
|
||||||
$entries[0] = array(
|
$entries[0] = array(
|
||||||
|
|
Loading…
Reference in a new issue