18 lines
295 B
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');
|
|
}
|
|
} |