Future<bool> hasTable(String table, {String? schema}) async { final id = _identifier(table, schema); return driver.hasTable(id.name, schema: id.schema); }