renderTableOptions abstract method
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,
});