mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-21 16:22:22 +02:00
[ticket/8064] Change the collation of topic_first_poster_name
PHPBB3-8064
This commit is contained in:
parent
6a8413f064
commit
990e64105f
@ -2711,8 +2711,9 @@
|
||||
0
|
||||
],
|
||||
"topic_first_poster_name": [
|
||||
"VCHAR_UNI",
|
||||
""
|
||||
"VCHAR_UNI:255",
|
||||
"",
|
||||
"true_sort"
|
||||
],
|
||||
"topic_first_poster_colour": [
|
||||
"VCHAR:6",
|
||||
|
44
phpBB/phpbb/db/migration/data/v310/topic_sort_username.php
Normal file
44
phpBB/phpbb/db/migration/data/v310/topic_sort_username.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\db\migration\data\v310;
|
||||
|
||||
class topic_sort_username extends \phpbb\db\migration\migration
|
||||
{
|
||||
static public function depends_on()
|
||||
{
|
||||
return array('\phpbb\db\migration\data\v310\dev');
|
||||
}
|
||||
|
||||
public function update_schema()
|
||||
{
|
||||
return array(
|
||||
'change_columns' => array(
|
||||
$this->table_prefix . 'topics' => array(
|
||||
'topic_first_poster_name' => array('VCHAR_UNI:255', '', 'true_sort'),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
public function revert_schema()
|
||||
{
|
||||
return array(
|
||||
'change_columns' => array(
|
||||
$this->table_prefix . 'topics' => array(
|
||||
'topic_first_poster_name' => array('VCHAR_UNI:255', ''),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user