*/ interface IMigration { /** * Upgrade the database to a newer version. */ public function up(); /** * Downgrade the database to an older version. */ public function down(); }