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