liquibase
Version:
Node.js wrapper for Liquibase
19 lines (18 loc) • 767 B
TypeScript
export interface UpdateOneChangesetSQLCommandAttributes {
/** Fully-qualified class which specifies a ChangeExecListener */
changeExecListenerClass?: string;
/** Path to a properties file for the ChangeExecListenerClass */
changeExecListenerPropertiesFile?: string;
/** required* The root changelog file */
changelogFile: string;
/** required* Author of the changeset to execute */
changesetAuthor: string;
/** required* Id of the changeset to execute */
changesetId: string;
/** required* Path to the changeset to execute */
changesetPath: string;
/** Context string to use for filtering */
contextFilter?: string;
/** Label expression to use for filtering */
labelFilter?: string;
}