drop the queue table which we no longer use

This commit is contained in:
friendica
2013-11-18 19:54:02 -08:00
parent 5cf5cbd193
commit bbd69c1e81
3 changed files with 9 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1081 );
define( 'UPDATE_VERSION' , 1082 );
/**
*
@@ -896,3 +896,10 @@ ADD INDEX ( `expires` ) ");
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
function update_r1081() {
$r = q("DROP TABLE `queue` ");
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}