tableInfos property

List<TableInfo> get tableInfos

The tables as the TableInfo the DDL generators consume.

Implementation

List<TableInfo> get tableInfos => [
      for (final table in tables.values) table.toTableInfo(),
    ];