summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2008-10-25 06:32:40 +0000
committerMax Kremmel <xing@synapse.plus.com>2008-10-25 06:32:40 +0000
commit6c287b59cc0a97e59b53544f64123476613f3604 (patch)
tree5e83af93bd182df42b0b57a5906ccfa3393ec7fc /admin
parent9c6064c3600c370831c2024303c62145db919c92 (diff)
downloadwiki-6c287b59cc0a97e59b53544f64123476613f3604.tar.gz
wiki-6c287b59cc0a97e59b53544f64123476613f3604.tar.bz2
wiki-6c287b59cc0a97e59b53544f64123476613f3604.zip
remove test upgrade scripts
Diffstat (limited to 'admin')
-rw-r--r--admin/upgrades/1.0.2-beta.php24
-rw-r--r--admin/upgrades/1.0.3.php34
2 files changed, 0 insertions, 58 deletions
diff --git a/admin/upgrades/1.0.2-beta.php b/admin/upgrades/1.0.2-beta.php
deleted file mode 100644
index 0ea9268..0000000
--- a/admin/upgrades/1.0.2-beta.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-global $gBitInstaller;
-
-$infoHash = array(
- 'package' => WIKI_PKG_NAME,
- 'version' => '1.0.2-beta',
- 'description' => "Creates a test table 'test_table_1'.",
- 'post_upgrade' => NULL,
-);
-
-
-$gBitInstaller->registerPackageUpgrade( $infoHash, array(
-
-array( 'DATADICT' => array(
- array( 'CREATE' => array (
- 'test_table_1' => "
- test_col_1 C(32) PRIMARY,
- test_col_2 C(64)
- ",
- )),
-)),
-
-));
-?>
diff --git a/admin/upgrades/1.0.3.php b/admin/upgrades/1.0.3.php
deleted file mode 100644
index 31153cb..0000000
--- a/admin/upgrades/1.0.3.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-global $gBitInstaller;
-
-$infoHash = array(
- 'package' => WIKI_PKG_NAME,
- 'version' => '1.0.3',
- 'description' => "Creates another test table 'test_table_2' and then removes both tables again. This way you can rerun this test process. All you need to do is uncomment the version store line in install_upgrade.php.",
- 'post_upgrade' => NULL,
-);
-
-$gBitInstaller->registerPackageUpgrade( $infoHash, array(
-
- array( 'DATADICT' => array(
- array( 'DROPTABLE' => array(
- 'test_table_1'
- )),
- array( 'CREATE' => array (
- 'test_table_2' => "
- test_col_1 C(32) PRIMARY,
- test_col_2 C(64)
- ",
- )),
- array( 'DROPTABLE' => array(
- 'test_table_2'
- )),
- )),
-
-));
-
-$gBitInstaller->registerPackageDependencies( $infoHash, array(
- 'kernel' => '0.0.2',
- 'liberty' => '0.1.1-beta',
-));
-?>