renderTableOptions method
List<String>
renderTableOptions(
- String tableName, {
- String? engine,
- String? charset,
- String? collation,
- String? comment,
- int? autoIncrement,
override
SQLite has no table-level options, so every one of these is dropped.
Implementation
@override
List<String> renderTableOptions(
String tableName, {
String? engine,
String? charset,
String? collation,
String? comment,
int? autoIncrement,
}) => const [];