From ec24f739e88d05d2c8a4ebd69209aeb6dbb09119 Mon Sep 17 00:00:00 2001 From: Jakub Senko Date: Sun, 25 Sep 2016 18:41:18 +0200 Subject: [ticket/8301] Add log_time index PHPBB3-8301 --- .../db/migration/data/v31x/add_log_time_index.php | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 phpBB/phpbb/db/migration/data/v31x/add_log_time_index.php diff --git a/phpBB/phpbb/db/migration/data/v31x/add_log_time_index.php b/phpBB/phpbb/db/migration/data/v31x/add_log_time_index.php new file mode 100644 index 0000000000..f53eedcd49 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/add_log_time_index.php @@ -0,0 +1,46 @@ + +* @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\v31x; + +class add_log_time_index extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v31x\v319', + ); + } + + public function update_schema() + { + return array( + 'add_index' => array( + $this->table_prefix . 'log' => array( + 'log_time' => array('log_time'), + ), + ), + ); + } + + public function revert_schema() + { + return array( + 'drop_keys' => array( + $this->table_prefix . 'log' => array( + 'log_time', + ), + ), + ); + } +} -- cgit v1.2.1 From 047c7375a5fa9f94afb2d490d761fb5ae434988f Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 1 Oct 2016 16:46:48 +0100 Subject: [ticket/14805] Ignore platform requirements while building packages PHPBB3-14805 --- build/build.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.xml b/build/build.xml index b732521e3e..100795663b 100644 --- a/build/build.xml +++ b/build/build.xml @@ -49,7 +49,7 @@ --> @@ -270,7 +270,7 @@ command="git archive ${revision} composer.phar | tar -xf - -C ${dir}" checkreturn="true" /> -- cgit v1.2.1