import Migration from "../db/Migration.js"; export default class DummyMigration extends Migration { public async install(): Promise { // Do nothing } public async rollback(): Promise { // Do nothing } }