liquibase
Version:
Node.js wrapper for Liquibase
11 lines (10 loc) • 381 B
TypeScript
export interface UpdateSQLCommandAttributes {
/**
* 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;
}