diff options
author | friendica <info@friendica.com> | 2013-08-04 17:17:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-04 17:17:00 -0700 |
commit | 68d907803a4521d9f0c0b69c4e875864f9058a8d (patch) | |
tree | cebbd9d749974b87eb92c8fe5f468bb23c161eef /install/update.php | |
parent | 1b7b53f4093a6a2b277f2b85b0962adbf1fa759e (diff) | |
download | volse-hubzilla-68d907803a4521d9f0c0b69c4e875864f9058a8d.tar.gz volse-hubzilla-68d907803a4521d9f0c0b69c4e875864f9058a8d.tar.bz2 volse-hubzilla-68d907803a4521d9f0c0b69c4e875864f9058a8d.zip |
basic *account* removal, but the channel removal which it calls still needs (lots of) work. Oh and the intro table is no longer used and won't be - so it's gone.
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; +} |