CC-3528: SaaS compatible upgrade script template
-Done
This commit is contained in:
parent
1c62323eca
commit
45fcedfbd3
10 changed files with 644 additions and 0 deletions
17
install_minimal/upgrades/airtime-2.1.0/DbUpgrade.php
Normal file
17
install_minimal/upgrades/airtime-2.1.0/DbUpgrade.php
Normal 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(){
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue