renderTableOptions abstract method

List<String> renderTableOptions(
  1. String tableName, {
  2. String? engine,
  3. String? charset,
  4. String? collation,
  5. String? comment,
  6. int? autoIncrement,
})

Renders table-level options set through TableDefinition (engine, charset, collation, comment, auto-increment seed). Most of these are MySQL-only; adapters return an empty list for options their engine has no equivalent for, so a migration stays portable across drivers.

Implementation

List<String> renderTableOptions(
  String tableName, {
  String? engine,
  String? charset,
  String? collation,
  String? comment,
  int? autoIncrement,
});