-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
require_once('upgrade_base.php'); | ||
/** | ||
* Upgrade346 | ||
* | ||
* @uses UpgradeBase | ||
* @package CTLT.iPeer | ||
* @author Pan Luo | ||
* @copyright 2020 All rights reserved. | ||
* @license PHP Version 3.0 {@link http://www.php.net/license/3_0.txt} | ||
* @version Release: 3.4.6 | ||
*/ | ||
class Upgrade346 extends UpgradeBase | ||
{ | ||
/** | ||
* __construct | ||
* | ||
* @access public | ||
* @return void | ||
*/ | ||
public function __construct() | ||
{ | ||
$this->fromVersions = array(null, '3.4.4', '3.4.5'); | ||
$this->toVersion = '3.4.6'; | ||
$this->dbVersion = 17; | ||
} | ||
|
||
/** | ||
* | ||
* @access public | ||
* @return bool | ||
*/ | ||
public function isUpgradable() | ||
{ | ||
return parent::isUpgradable(); | ||
} | ||
|
||
/** | ||
* up | ||
* | ||
* @access public | ||
* @return boolean | ||
*/ | ||
public function up() | ||
{ | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.4.4 | ||
3.4.6 |