usecrate::ReferenceDb;usesuper::AbstractMigrations;#[async_trait]implAbstractMigrations forReferenceDb{#[cfg(test)]/// Drop the database
async fndrop_database(&self){}/// Migrate the database
async fnmigrate_database(&self)->Result<(), ()>{// Here you would do your typical migrations if this was a real database.
Ok(())}}