hasColumn method

Future<bool> hasColumn(
  1. String table,
  2. String column, {
  3. String? schema,
})

Implementation

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