PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
knex
/
lib
/
schema
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pushQuery = pushQuery; exports.pushAdditional = pushAdditional; exports.unshiftQuery = unshiftQuery; var _lodash = require("lodash"); // Push a new query onto the compiled "sequence" stack, // creating a new formatter, returning the compiler. function pushQuery(query) { if (!query) return; if ((0, _lodash.isString)(query)) { query = { sql: query }; } if (!query.bindings) { query.bindings = this.formatter.bindings; } this.sequence.push(query); this.formatter = this.client.formatter(this._commonBuilder); } // Used in cases where we need to push some additional column specific statements. function pushAdditional(fn) { const child = new this.constructor(this.client, this.tableCompiler, this.columnBuilder); fn.call(child, (0, _lodash.tail)(arguments)); this.sequence.additional = (this.sequence.additional || []).concat(child.sequence); } // Unshift a new query onto the compiled "sequence" stack, // creating a new formatter, returning the compiler. function unshiftQuery(query) { if (!query) return; if ((0, _lodash.isString)(query)) { query = { sql: query }; } if (!query.bindings) { query.bindings = this.formatter.bindings; } this.sequence.unshift(query); this.formatter = this.client.formatter(this._commonBuilder); }
[-] helpers.js
[edit]
[+]
..
[-] tablecompiler.js
[edit]
[-] columncompiler.js
[edit]
[-] tablebuilder.js
[edit]
[-] columnbuilder.js
[edit]
[-] compiler.js
[edit]
[-] builder.js
[edit]