pushSchema method
Future<PostgresqlMigrationResult>
pushSchema({
- required SessionExecutor executor,
- required SchemaDocument target,
- bool allowWarnings = false,
Applies target directly without creating history entries.
Implementation
Future<PostgresqlMigrationResult> pushSchema({
required pg.SessionExecutor executor,
required SchemaDocument target,
bool allowWarnings = false,
}) {
return runner.pushToSchema(
executor: executor,
target: target,
allowWarnings: allowWarnings,
);
}