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

Merge remote-tracking branch 'github-nicofuma/ticket/8064' into develop-ascraeus

* github-nicofuma/ticket/8064:
  [ticket/8064] Change the collation of topic_first_poster_name
This commit is contained in:
Nils Adermann 2014-08-10 11:54:52 +02:00
commit df9f35cce6
2 changed files with 47 additions and 2 deletions

View File

@ -2711,8 +2711,9 @@
0
],
"topic_first_poster_name": [
"VCHAR_UNI",
""
"VCHAR_UNI:255",
"",
"true_sort"
],
"topic_first_poster_colour": [
"VCHAR:6",

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