summaryrefslogtreecommitdiff
path: root/admin/upgrades/1.0.1.php
blob: 774c6fbbc06ccb52d99826e48e79a55dc8f10eee (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
/**
 */
global $gBitInstaller;

$infoHash = array(
	'package'      => WIKI_PKG_NAME,
	'version'      => str_replace( '.php', '', basename( __FILE__ )),
	'description'  => "Drop unused tables.",
	'post_upgrade' => NULL,
);
$gBitInstaller->registerPackageUpgrade( $infoHash, array(

array( 'DATADICT' => array(
	array( 'DROPTABLE' => array(
		'wiki_received_pages',
		'wiki_tags',
		'wiki_ext',
	)),
)),

));
?>