runSql method
Run a single ad-hoc SQL statement (not tracked in migrations table) Use this for one-off operations that don't need version tracking
Implementation
Future<void> runSql(String sql, {Map<String, dynamic>? parameters}) async {
await connection.execute(sql, parameters: parameters);
}