#![cfg(feature = "schema-manager")]
mod embedded_migrations;
use wtx::database::schema_manager::Commands;
pub async fn compiles() {
let mut commands = Commands::with_executor(());
commands.migrate_from_groups(embedded_migrations::GROUPS).await.unwrap();
}