SchemaMigration constructor
SchemaMigration({})
Implementation
SchemaMigration({
required int fromVersion,
required int toVersion,
required List<ColumnOperation> operations,
this.entityType,
this.where,
this.sqlWhere,
}) : assert(toVersion > fromVersion, 'toVersion must be greater than fromVersion'),
_fromVersion = fromVersion,
_toVersion = toVersion,
operations = List.unmodifiable(operations);