OrmConfig constructor
const
OrmConfig({
- String schema = 'lib/schema.dart',
- String? output,
- String migrations = 'migrations',
- required MigrationHistory history,
- required SchemaSnapshot snapshot,
- MigrationConnection? connect,
- SchemaRenames renames = const SchemaRenames(),
- Map<
String, Map< using = const {},String, String> >
Configures a project without opening a database or executing a migration.
Implementation
const OrmConfig({
this.schema = 'lib/schema.dart',
this.output,
this.migrations = 'migrations',
required this.history,
required this.snapshot,
this.connect,
this.renames = const SchemaRenames(),
this.using = const {},
});