liquibase
Version:
Node.js wrapper for Liquibase
11 lines (10 loc) • 602 B
TypeScript
export interface ChecksDeleteCommandAttributes {
/** Automatically enable new quality checks in liquibase.checks.conf file when they are available. Options: [true|false] */
autoEnableNewChecks?: boolean;
/** Allows automatic backup and updating of liquibase.checks.conf file when new quality checks are available, or for file format changes. Options: [on|off] */
autoUpdate?: string;
/** required* Name of check to delete */
checkName: string;
/** Relative or fully qualified path to a configuration file for checks execution */
checksSettingsFile?: string;
}