summaryrefslogtreecommitdiff
path: root/admin/upgrade_inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/upgrade_inc.php')
-rw-r--r--admin/upgrade_inc.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/admin/upgrade_inc.php b/admin/upgrade_inc.php
deleted file mode 100644
index d649c4f..0000000
--- a/admin/upgrade_inc.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-global $gBitSystem, $gUpgradeFrom, $gUpgradeTo;
-
-$upgrades = array(
-
- 'BWR1' => array(
- 'BWR2' => array(
-// de-tikify tables
-array( 'DATADICT' => array(
- array( 'DROPTABLE' => array(
- 'tiki_nexus_plugins'
- )),
- array( 'RENAMETABLE' => array(
- 'tiki_nexus_menus' => 'nexus_menus',
- 'tiki_nexus_menu_items' => 'nexus_menu_items',
- )),
- array( 'RENAMECOLUMN' => array(
- 'nexus_menus' => array(
- '`type`' => '`menu_type` C(16)'
- ),
- )),
-)),
-
- )
- ),
-);
-
-if( isset( $upgrades[$gUpgradeFrom][$gUpgradeTo] ) ) {
- $gBitSystem->registerUpgrade( NEXUS_PKG_NAME, $upgrades[$gUpgradeFrom][$gUpgradeTo] );
-}
-?>