blob: 11e2d0b71124219ac4f74a2ca01b3ba085068b4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_users/admin/upgrades/2.1.0.php,v 1.1 2008/10/28 21:15:00 squareing Exp $
*/
global $gBitInstaller;
$infoHash = array(
'package' => USERS_PKG_NAME,
'version' => str_replace( '.php', '', basename( __FILE__ )),
'description' => "Remove the unused <em>users_semaphores</em> table from your database. If you need a semaphores feature, there is a <a class='external' href='http://www.bitweaver.org/wiki/SemaphorePackage'>SemaphorePackage</a> now.",
'post_upgrade' => NULL,
);
$gBitInstaller->registerPackageUpgrade( $infoHash, array(
array( 'DATADICT' => array(
array( 'DROPTABLE' => array(
'users_semaphores',
)),
)),
));
?>
|