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