<?php

namespace Breyta\Test\Example\Grouped;

use Breyta\AbstractMigration;

class FamilyTable extends AbstractMigration
{

    /**
     * Bring the migration up
     */
    public function up(): void
    {
    }

    /**
     * Bring the migration down
     */
    public function down(): void
    {
    }
}