. */ /** * Interface MigrationInterface - upgrade/downgrade the database schema. */ interface MigrationInterface { /** * Upgrade to to the next version */ public function upgrade(); }