diff options
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index f953e3f09..c09bc9d64 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1057 ); +define( 'UPDATE_VERSION' , 1058 ); /** * @@ -663,3 +663,10 @@ ADD INDEX ( `xchan_instance_url` ) "); return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1057() { + $r = q("drop table intro"); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |