1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-04 21:44:57 +02:00

[ticket/11201] Remove database column on update

PHPBB3-11201
This commit is contained in:
Joas Schilling 2013-01-16 01:08:34 +01:00
parent 9affd6f7e7
commit 460470229d

View File

@ -1193,6 +1193,11 @@ function database_update_info()
'user_timezone' => array('VCHAR:100', ''),
),
),
'drop_columns' => array(
USERS_TABLE => array(
'user_msnm',
),
),
),
);
}