2017-09-29 13:07:11 -04:00

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');
}
}