mirror of
https://github.com/friendica/friendica
synced 2025-04-24 23:50:20 +00:00
Moving the index creation commands into a readme file due to the fact that creating of these indexes is really slow.
This commit is contained in:
parent
fc27edb6d7
commit
dc416e5887
2 changed files with 6 additions and 14 deletions
15
update.php
15
update.php
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
define( 'UPDATE_VERSION' , 1154 );
|
||||
define( 'UPDATE_VERSION' , 1153 );
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -1336,16 +1336,3 @@ function update_1152() {
|
|||
return UPDATE_FAILED;
|
||||
return UPDATE_SUCCESS;
|
||||
}
|
||||
|
||||
function update_1153() {
|
||||
$r = q("CREATE INDEX `uid_commented` ON `item` (`uid`, `commented`)");
|
||||
if(! $r)
|
||||
return UPDATE_FAILED;
|
||||
$r = q("CREATE INDEX `uid_created` ON `item` (`uid`, `created`)");
|
||||
if(! $r)
|
||||
return UPDATE_FAILED;
|
||||
$r = q("CREATE INDEX `uid_unseen` ON `item` (`uid`, `unseen`)");
|
||||
if(! $r)
|
||||
return UPDATE_FAILED;
|
||||
return UPDATE_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue