From 9562470d47bfb3185e36bb0326ebd45b65d78387 Mon Sep 17 00:00:00 2001 From: Robbt Date: Wed, 12 Dec 2018 12:21:42 -0500 Subject: [PATCH] added upgraded class --- airtime_mvc/application/upgrade/Upgrades.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/airtime_mvc/application/upgrade/Upgrades.php b/airtime_mvc/application/upgrade/Upgrades.php index e305ca228..b524431ae 100644 --- a/airtime_mvc/application/upgrade/Upgrades.php +++ b/airtime_mvc/application/upgrade/Upgrades.php @@ -532,3 +532,17 @@ class AirtimeUpgrader300alpha6 extends AirtimeUpgrader return '3.0.0-alpha.6'; } } + +class AirtimeUpgrader300alpha7 extends AirtimeUpgrader +{ + protected function getSupportedSchemaVersions() { + return array( + '3.0.0-alpha.6' + ); + } + + public function getNewVersion() { + return '3.0.0-alpha.7'; + } +} +