aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-01-16 01:08:34 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-01-16 01:08:34 +0100
commit460470229d972b93ef5a98b0d1d97a2a970d684f (patch)
treefa79ed4c2e54ef94b1f35c7491e5874b6620f5b9 /phpBB/install/database_update.php
parent9affd6f7e7b95442f1ef14894858d8213f3fbd2a (diff)
downloadforums-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.php5
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',
+ ),
+ ),
),
);
}