ddl-manager
Version:
store postgres procedures and triggers in files
19 lines • 497 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.File = void 0;
class File {
constructor(params) {
Object.assign(this, params);
if (!this.content.functions) {
this.content.functions = [];
}
if (!this.content.triggers) {
this.content.triggers = [];
}
if (!this.content.cache) {
this.content.cache = [];
}
}
}
exports.File = File;
//# sourceMappingURL=File.js.map