summaryrefslogtreecommitdiff
path: root/BitInstaller.php
diff options
context:
space:
mode:
Diffstat (limited to 'BitInstaller.php')
-rw-r--r--BitInstaller.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/BitInstaller.php b/BitInstaller.php
index 05745aa..d2385fa 100644
--- a/BitInstaller.php
+++ b/BitInstaller.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_install/BitInstaller.php,v 1.52 2009/03/31 08:14:43 lsces Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/BitInstaller.php,v 1.53 2010/01/26 15:38:13 dansut Exp $
* @package install
*/
@@ -427,6 +427,13 @@ class BitInstaller extends BitSystem {
}
}
break;
+ case 'DROPSEQUENCE':
+ foreach( $dd as $drop ) {
+ foreach( $drop as $sequence ) {
+ $this->mDb->DropSequence( $sequencePrefix.$sequence );
+ }
+ }
+ break;
case 'DROPCOLUMN':
foreach( $dd as $drop ) {
foreach( array_keys( $drop ) as $tableName ) {