1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-16 06:36:39 +02:00

Merge pull request #4114 from marc1706/ticket/14396

[ticket/14396] Use VCHAR_UNI and correct depends_on() version
This commit is contained in:
Oliver Schramm
2016-01-08 18:22:00 +01:00

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'),
), ),
), ),
); );