Mods-for-HESK-Netsyms/install/migrations/AbstractMigration.php
2017-09-29 13:07:11 -04:00

7 lines
102 B
PHP

<?php
abstract class AbstractMigration {
abstract function up();
abstract function down();
}