diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2008-11-12 22:07:09 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2008-11-12 22:07:09 +0000 |
| commit | 673e810b88c386b7a0b998eaf6b940d1c45ec732 (patch) | |
| tree | 26b44de99c6e218508574b1a5ef0f257a02b8c4e /admin | |
| parent | ce72851549a9c589877913f76d71313353a70981 (diff) | |
| download | wiki-673e810b88c386b7a0b998eaf6b940d1c45ec732.tar.gz wiki-673e810b88c386b7a0b998eaf6b940d1c45ec732.tar.bz2 wiki-673e810b88c386b7a0b998eaf6b940d1c45ec732.zip | |
alter wiki_footnotes.user_id from var char to integer and use a different 'first' version for wiki
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/upgrades/1.0.0.php (renamed from admin/upgrades/2.1.0.php) | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/admin/upgrades/2.1.0.php b/admin/upgrades/1.0.0.php index 0059c28..fcf6807 100644 --- a/admin/upgrades/2.1.0.php +++ b/admin/upgrades/1.0.0.php @@ -7,7 +7,7 @@ global $gBitInstaller; $infoHash = array( 'package' => WIKI_PKG_NAME, 'version' => str_replace( '.php', '', basename( __FILE__ )), - 'description' => "This upgrade replaces unused meta tables with new ones. These meta tables are used to store meta data of uploaded files.", + 'description' => "Minor fix to table column type.", 'post_upgrade' => NULL, ); $gBitInstaller->registerPackageUpgrade( $infoHash, array( @@ -15,16 +15,9 @@ $gBitInstaller->registerPackageUpgrade( $infoHash, array( array( 'DATADICT' => array( array( 'ALTER' => array( 'wiki_footnotes' => array( - 'user_id' => array( '`user_id`', 'I4' ), // , 'NOTNULL' ), + 'user_id' => array( '`user_id`', 'I4' ), ))), )), -array( 'PHP' => ' - // make sure plugins are up to date. - global $gLibertySystem; - $gLibertySystem->scanAllPlugins(); -' -) - )); ?> |
