db update to add index to item.resource_id we query this in wikis a lot

This commit is contained in:
Mario Vavti
2017-09-16 10:11:59 +02:00
parent cb3fb0049f
commit d5ffa5508d
4 changed files with 19 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1195 );
define( 'UPDATE_VERSION' , 1196 );
/**
*
@@ -3007,4 +3007,18 @@ function update_r1194() {
}
return UPDATE_SUCCESS;
}
}
function update_r1195() {
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r1 = q("CREATE INDEX item_resource_id ON item (resource_id)");
}
else {
$r1 = q("ALTER TABLE item ADD INDEX (resource_id)");
}
if($r1)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}