diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-01-16 01:08:34 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-01-16 01:08:34 +0100 |
commit | 460470229d972b93ef5a98b0d1d97a2a970d684f (patch) | |
tree | fa79ed4c2e54ef94b1f35c7491e5874b6620f5b9 /phpBB/install/database_update.php | |
parent | 9affd6f7e7b95442f1ef14894858d8213f3fbd2a (diff) | |
download | forums-460470229d972b93ef5a98b0d1d97a2a970d684f.tar forums-460470229d972b93ef5a98b0d1d97a2a970d684f.tar.gz forums-460470229d972b93ef5a98b0d1d97a2a970d684f.tar.bz2 forums-460470229d972b93ef5a98b0d1d97a2a970d684f.tar.xz forums-460470229d972b93ef5a98b0d1d97a2a970d684f.zip |
[ticket/11201] Remove database column on update
PHPBB3-11201
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r-- | phpBB/install/database_update.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 8950d677ae..3de9ce2717 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1193,6 +1193,11 @@ function database_update_info() 'user_timezone' => array('VCHAR:100', ''), ), ), + 'drop_columns' => array( + USERS_TABLE => array( + 'user_msnm', + ), + ), ), ); } |