UNPKG

ddl-manager

Version:

store postgres procedures and triggers in files

18 lines 521 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.With = void 0; const AbstractAstElement_1 = require("./AbstractAstElement"); class With extends AbstractAstElement_1.AbstractAstElement { constructor(row) { super(); Object.assign(this, row); } template(spaces) { return [ spaces + "with", ...this.queries.map(query => query.toSQL(spaces.plusOneLevel())) ]; } } exports.With = With; //# sourceMappingURL=With.js.map