diff options
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 493a5478b..a2a280e67 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1038 ); +define( 'UPDATE_VERSION' , 1039 ); /** * @@ -495,5 +495,13 @@ ADD INDEX `parent_mid` ( `parent_mid` ) "); } +function update_r1038() { + $r = q("ALTER TABLE `manage` CHANGE `mid` `xchan` CHAR( 255 ) NOT NULL DEFAULT '', drop index `mid`, ADD INDEX ( `xchan` )"); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; + +} + |