SqlMigrationLedger.managed constructor
SqlMigrationLedger.managed({})
Implementation
SqlMigrationLedger.managed({
required String connectionName,
ConnectionManager? manager,
ConnectionRole role = ConnectionRole.primary,
String? tableName,
String? tablePrefix,
}) : this._(
_applyTablePrefix(tableName ?? 'orm_migrations', tablePrefix),
_DriverInvoker.managed(
manager ?? ConnectionManager.defaultManager,
connectionName,
role,
),
tablePrefix,
);