MigrationHistory constructor
MigrationHistory(
- Iterable<
(Migration, String)> entries, { - required SqlDialect dialect,
Copies the ordered entries; checked validates their reviewed fingerprints.
Implementation
MigrationHistory(
Iterable<(Migration, String)> entries, {
required this.dialect,
}) : entries = List.unmodifiable(entries);