diff options
author | friendica <info@friendica.com> | 2012-02-26 15:07:34 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-26 15:07:34 -0800 |
commit | 89560edde2fe3fb198b558479e9c2300fc4185fd (patch) | |
tree | bffb4a563ed2fe1ff02a4221e28c608460c866db /update.php | |
parent | 6ddd444afde33337235eab3aa9d6d1fe12bcb7a4 (diff) | |
parent | fe3dfbee5638dd2988bd8b126652b3138572f02c (diff) | |
download | volse-hubzilla-89560edde2fe3fb198b558479e9c2300fc4185fd.tar.gz volse-hubzilla-89560edde2fe3fb198b558479e9c2300fc4185fd.tar.bz2 volse-hubzilla-89560edde2fe3fb198b558479e9c2300fc4185fd.zip |
Merge pull request #50 from annando/master
massive changes in mail and design updates in "vier"
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update.php b/update.php index 18dc90cce..8a2d891ca 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1126 ); +define( 'UPDATE_VERSION' , 1127 ); /** * @@ -1090,3 +1090,7 @@ function update_1125() { ) ENGINE = MyISAM DEFAULT CHARSET=utf8"); } +function update_1126() { + q("ALTER TABLE `mailacct` ADD `action` INT NOT NULL AFTER `pass`, + ADD `movetofolder` CHAR(255) NOT NULL AFTER `action`"); +} |