Mods-for-HESK-Netsyms/install/migrations/AbstractMigration.php

7 lines
102 B
PHP
Raw Normal View History

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