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