added upgraded class

This commit is contained in:
Robbt 2018-12-12 12:21:42 -05:00
parent 1bf5fcc169
commit 9562470d47
1 changed files with 14 additions and 0 deletions

View File

@ -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';
}
}