node-liquibase
Version:
Node.js wrapper for Liquibase
19 lines (18 loc) • 730 B
TypeScript
export interface UpdateCommandAttributes {
/**
* Tags you can add to changesets to determine which changesets in the changelog to evaluate based on their labels
*/
labels?: string;
/**
* Expressions you can add to changesets to determine which changesets in the changelog to evaluate based on their contexts
*/
contexts?: string;
/**
* Specifies in what Schema the Liquibase DATABASECHANGELOG and DATABASECHANGELOGLOCK tables will be managed
*/
liquibaseSchemaName?: string;
/**
* For MSSQL only: Specifies in what Catalog the Liquibase DATABASECHANGELOG and DATABASECHANGELOGLOCK tables will be managed
*/
liquibaseCatalogName?: string;
}