<?php

namespace Breyta\Test\Example\Grouped;

use Breyta\AbstractMigration;

class Foo 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.
    }
}