aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-08-09 18:56:15 +0200
committerTristan Darricau <github@nicofuma.fr>2014-08-10 00:58:22 +0200
commit990e64105fe410485d49800988a0f465038e3b37 (patch)
tree014a767c66769f5bfd301e06af2d85bedafbec7f /phpBB/phpbb
parent6a8413f064a0a8ade332634c2a891e8ca9038a8b (diff)
downloadforums-990e64105fe410485d49800988a0f465038e3b37.tar
forums-990e64105fe410485d49800988a0f465038e3b37.tar.gz
forums-990e64105fe410485d49800988a0f465038e3b37.tar.bz2
forums-990e64105fe410485d49800988a0f465038e3b37.tar.xz
forums-990e64105fe410485d49800988a0f465038e3b37.zip
[ticket/8064] Change the collation of topic_first_poster_name
PHPBB3-8064
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/topic_sort_username.php44
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', ''),
+ ),
+ ),
+ );
+ }
+}