diff options
author | friendica <info@friendica.com> | 2013-03-27 19:02:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-27 19:02:01 -0700 |
commit | 8148b7c32f160cbe2cdc37e7271ac62aa2133b7c (patch) | |
tree | ec29500cc9a2317a9e21a4c4a6874f15da6c846a /install/update.php | |
parent | ca605a8c838b28e89c611e1063456afa82e2fb33 (diff) | |
download | volse-hubzilla-8148b7c32f160cbe2cdc37e7271ac62aa2133b7c.tar.gz volse-hubzilla-8148b7c32f160cbe2cdc37e7271ac62aa2133b7c.tar.bz2 volse-hubzilla-8148b7c32f160cbe2cdc37e7271ac62aa2133b7c.zip |
update manage table and some documentation
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; + +} + |