Skip to content
Snippets Groups Projects
2018-11-22T23-15-31Z_FooBaz.php 378 B
Newer Older
<?php

namespace Breyta\Test\Example;

use Breyta\AbstractMigration;

class FooBaz extends AbstractMigration
{
    /**
     * Bring the migration up
     */
    public function up(): void
    {
        // TODO: Implement up() method.
    }

    /**
     * Bring the migration down
     */
    public function down(): void
    {
        // TODO: Implement down() method.
    }
}