createImplicitManyToManyTableStatements method

List<String> createImplicitManyToManyTableStatements(
  1. SchemaDocument schema
)

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);
}