pushSchema method
SqliteMigrationResult
pushSchema({
- required Database database,
- required SchemaDocument target,
- bool allowWarnings = false,
Applies target directly without writing migration history.
Implementation
SqliteMigrationResult pushSchema({
required sqlite.Database database,
required SchemaDocument target,
bool allowWarnings = false,
}) {
return runner.pushToSchema(
database: database,
target: target,
allowWarnings: allowWarnings,
);
}