Merge pull request #1141 from radiorabe/fix/remove-smemb

refactor(airtime_mvc): remove dead cc_smemb table and classes
This commit is contained in:
Kyle Robbertze 2020-12-27 21:35:35 +02:00 committed by GitHub
commit b6d22c94a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 25 additions and 2401 deletions

View file

@ -625,3 +625,16 @@ class AirtimeUpgrader300alpha9_2 extends AirtimeUpgrader
return '3.0.0-alpha.9.2';
}
}
class AirtimeUpgrader200alpha9_3 extends AirtimeUpgrader
{
protected function getSupportedSchemaVersions() {
return array(
'3.0.0-alpha.9.2'
);
}
public function getNewVersion() {
return '3.0.0-alpha.9.3';
}
}