Run schema update and add migration script

This commit is contained in:
Lucas Bickel 2018-02-03 16:43:10 +01:00
parent ca9f156b3c
commit 313342c297
4 changed files with 18 additions and 2 deletions

View file

@ -518,4 +518,17 @@ class AirtimeUpgrader300alpha1 extends AirtimeUpgrader
public function getNewVersion() {
return '3.0.0-alpha.1';
}
}
}
class AirtimeUpgrader300alpha6 extends AirtimeUpgrader
{
protected function getSupportedSchemaVersions() {
return array(
'3.0.0-alpha.1'
);
}
public function getNewVersion() {
return '3.0.0-alpha.6';
}
}