CC-3528: SaaS compatible upgrade script template

-Done
This commit is contained in:
Martin Konecny 2012-03-27 15:49:54 -04:00
parent 1c62323eca
commit 45fcedfbd3
10 changed files with 644 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<?php
/* All functions other than start() should be marked as
* private.
*/
class AirtimeDatabaseUpgrade{
public static function start(){
echo "* Updating Database".PHP_EOL;
self::task0();
}
private static function task0(){
}
}