createImplicitManyToManyTableStatements method
Returns creation statements for implicit many-to-many tables.
Implementation
List<String> createImplicitManyToManyTableStatements(SchemaDocument schema) {
final effectiveSchema = schema.withoutIgnored();
return collectImplicitManyToManyStorages(
effectiveSchema,
).map(createImplicitManyToManyTableStatement).toList(growable: false);
}