diff options
Diffstat (limited to 'admin/upgrades/1.0.0.php')
| -rw-r--r-- | admin/upgrades/1.0.0.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/admin/upgrades/1.0.0.php b/admin/upgrades/1.0.0.php deleted file mode 100644 index a3277e5..0000000 --- a/admin/upgrades/1.0.0.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php -/** - * @version $Header$ - */ -global $gBitInstaller; - -$infoHash = array( - 'package' => ARTICLES_PKG_NAME, - 'version' => str_replace( '.php', '', basename( __FILE__ )), - 'description' => "Fix the names of sequence tables to be standardized.", - 'post_upgrade' => NULL, -); - -$gBitInstaller->registerPackageUpgrade( $infoHash, array( - array( 'DATADICT' => array( - array( 'RENAMESEQUENCE' => array( - "article_types_a_t_id_seq" => "article_types_id_seq", - "articles_topics_id_seq" => "article_topics_id_seq", - )), - array( 'DROPSEQUENCE' => array( 'article_topics_t_id_seq' ) ), - )), -)); |
