summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2026-03-25 10:06:30 +0000
committerlsces <lester@lsces.co.uk>2026-03-25 10:06:30 +0000
commit39a6756ec94d0ba32281b2b5eae396f7fcd1b85b (patch)
tree6337004c59b3d2a5528e45376b973d2bb8687b0c /admin
parentfe6238f66809ae75f896d4f04f19d82cf542dbac (diff)
downloadrss-39a6756ec94d0ba32281b2b5eae396f7fcd1b85b.tar.gz
rss-39a6756ec94d0ba32281b2b5eae396f7fcd1b85b.tar.bz2
rss-39a6756ec94d0ba32281b2b5eae396f7fcd1b85b.zip
Relocate class packages and delete historic upgrade path
Diffstat (limited to 'admin')
-rw-r--r--admin/upgrade_inc.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/admin/upgrade_inc.php b/admin/upgrade_inc.php
deleted file mode 100644
index 0bc2668..0000000
--- a/admin/upgrade_inc.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-global $gBitSystem, $gUpgradeFrom, $gUpgradeTo;
-
-$upgrades = array(
-
-'BONNIE' => array(
- 'BWR1' => array(
-// STEP 1
-array( 'DATADICT' => array(
- array( 'RENAMECOLUMN' => array(
- 'tiki_rss_modules' => array(
- '`rssId`' => '`rss_id` I4 AUTO',
- '`lastUpdated`' => '`last_updated` I8',
- '`showPubDate`' => '`show_pub_date` I8',
- '`showTitle`' => '`show_title` C(1)' ),
- 'tiki_rss_feeds' => array(
- '`rssVer`' => '`rss_ver` C(1)',
- '`lastUpdated`' => '`last_updated` I8'),
- )),
-)),
-
- )
-),
-
- 'BWR1' => array(
- 'BWR2' => array(
-// de-tikify tables
-array( 'DATADICT' => array(
- array( 'RENAMETABLE' => array(
- 'tiki_rss_modules' => 'rss_modules',
- 'tiki_rss_feeds' => 'rss_feeds',
- )),
- array( 'RENAMECOLUMN' => array(
- 'rss_feeds' => array(
- '`cache`' => '`rss_cache` B'
- ),
- )),
-)),
- )
- ),
-
-);
-
-if( isset( $upgrades[$gUpgradeFrom][$gUpgradeTo] ) ) {
- $gBitSystem->registerUpgrade( RSS_PKG_NAME, $upgrades[$gUpgradeFrom][$gUpgradeTo] );
-}
-
-
-?>