modified episodes_description to be longvarchar aka text

This commit is contained in:
Robbt 2019-04-02 20:12:20 -04:00
parent adb8d8c01d
commit 0cbeb07e19
6 changed files with 19 additions and 4 deletions

View file

@ -589,3 +589,16 @@ class AirtimeUpgrader300alpha7_2 extends AirtimeUpgrader
return '3.0.0-alpha.7.2';
}
}
class AirtimeUpgrader300alpha7_3 extends AirtimeUpgrader
{
protected function getSupportedSchemaVersions() {
return array(
'3.0.0-alpha.7.2'
);
}
public function getNewVersion() {
return '3.0.0-alpha.7.3';
}
}