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 48cb15c03..06e3ef9f9 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1005 ); +define( 'UPDATE_VERSION' , 1006 ); /** * @@ -98,4 +98,11 @@ PRIMARY KEY ( `site_url` ) if($r && $r2) return UPDATE_SUCCESS; return UPDATE_FAILED; +} + + +function update_r1005() { + q("drop table guid"); + q("drop table `notify-threads`); + return UPDATE_SUCCESS; }
\ No newline at end of file |