diff options
author | Nils Adermann <naderman@naderman.de> | 2014-08-10 11:54:52 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-08-10 11:54:52 +0200 |
commit | df9f35cce6a31e652fd2a4c403a86759319a2d24 (patch) | |
tree | 98cd401d34d859695eba3820d1189175ceeb990e /phpBB/phpbb | |
parent | 5c93735557ebca850ecd588745e9ab9295a536b5 (diff) | |
parent | 990e64105fe410485d49800988a0f465038e3b37 (diff) | |
download | forums-df9f35cce6a31e652fd2a4c403a86759319a2d24.tar forums-df9f35cce6a31e652fd2a4c403a86759319a2d24.tar.gz forums-df9f35cce6a31e652fd2a4c403a86759319a2d24.tar.bz2 forums-df9f35cce6a31e652fd2a4c403a86759319a2d24.tar.xz forums-df9f35cce6a31e652fd2a4c403a86759319a2d24.zip |
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
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/topic_sort_username.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/topic_sort_username.php b/phpBB/phpbb/db/migration/data/v310/topic_sort_username.php new file mode 100644 index 0000000000..527da20590 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/topic_sort_username.php @@ -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', ''), + ), + ), + ); + } +} |