You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/install/migrations/Pre140/StatusesMigration.php

18 lines
295 B
PHP

<?php
namespace Pre140;
use AbstractMigration;
class StatusesMigration extends AbstractMigration {
function up() {
// TODO: Implement up() method.
die('up called');
}
function down() {
// TODO: Implement down() method.
die('down called');
}
}