. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Schema; /** * Upgrade the database schema. */ interface MigrationInterface { public function upgrade(): void; }