From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A17CD138334 for ; Sat, 4 May 2019 05:20:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04237E087E; Sat, 4 May 2019 05:20:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D82A7E0880 for ; Sat, 4 May 2019 05:20:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93CAB343494 for ; Sat, 4 May 2019 05:20:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 073545E9 for ; Sat, 4 May 2019 05:20:05 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1556368910.bec047586a09ec0bf4a8214edb66c452e2489851.chiitoo@gentoo> Subject: [gentoo-commits] proj/forums:origin/3.2.x commit in: phpBB/phpbb/db/migration/data/v32x/ X-VCS-Repository: proj/forums X-VCS-Files: phpBB/phpbb/db/migration/data/v32x/v326.php X-VCS-Directories: phpBB/phpbb/db/migration/data/v32x/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: bec047586a09ec0bf4a8214edb66c452e2489851 X-VCS-Branch: origin/3.2.x Date: Sat, 4 May 2019 05:20:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0ab138d5-57e9-4a3c-ba07-2307a8bce045 X-Archives-Hash: 19bdf535dce6e5024546e03dff1e212c commit: bec047586a09ec0bf4a8214edb66c452e2489851 Author: Marc Alexander m-a-styles de> AuthorDate: Sat Apr 27 12:41:50 2019 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Sat Apr 27 12:41:50 2019 +0000 URL: https://gitweb.gentoo.org/proj/forums.git/commit/?id=bec04758 [prep-release-3.2.6] Add migration to 3.2.6 phpBB/phpbb/db/migration/data/v32x/v326.php | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/phpBB/phpbb/db/migration/data/v32x/v326.php b/phpBB/phpbb/db/migration/data/v32x/v326.php new file mode 100644 index 000000000..2d511b9ed --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v326.php @@ -0,0 +1,39 @@ + +* @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\v32x; + +class v326 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.6', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v32x\v326rc1', + '\phpbb\db\migration\data\v32x\disable_remote_avatar', + '\phpbb\db\migration\data\v32x\smtp_dynamic_data', + ); + + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.6')), + ); + } +}