1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-25 04:23:38 +01:00

[ticket/14396] Use VCHAR_UNI and correct depends_on() version

PHPBB3-14396
This commit is contained in:
Marc Alexander 2016-01-08 16:55:40 +01:00
parent 2ab7b12419
commit 9fe8d05d5b

View File

@ -18,7 +18,7 @@ class increase_size_of_dateformat extends \phpbb\db\migration\migration
static public function depends_on() static public function depends_on()
{ {
return array( return array(
'\phpbb\db\migration\data\v31x\v316', '\phpbb\db\migration\data\v31x\v317',
); );
} }
@ -27,7 +27,7 @@ class increase_size_of_dateformat extends \phpbb\db\migration\migration
return array( return array(
'change_columns' => array( 'change_columns' => array(
$this->table_prefix . 'users' => array( $this->table_prefix . 'users' => array(
'user_dateformat' => array('VCHAR:64', 'd M Y H:i'), 'user_dateformat' => array('VCHAR_UNI:64', 'd M Y H:i'),
), ),
), ),
); );