Initial commit
This commit is contained in:
21
node_modules/knex/lib/dialects/postgres/schema/pg-viewbuilder.js
generated
vendored
Executable file
21
node_modules/knex/lib/dialects/postgres/schema/pg-viewbuilder.js
generated
vendored
Executable file
@@ -0,0 +1,21 @@
|
||||
const ViewBuilder = require('../../../schema/viewbuilder.js');
|
||||
|
||||
class ViewBuilder_PG extends ViewBuilder {
|
||||
constructor() {
|
||||
super(...arguments);
|
||||
}
|
||||
|
||||
checkOption() {
|
||||
this._single.checkOption = 'default_option';
|
||||
}
|
||||
|
||||
localCheckOption() {
|
||||
this._single.checkOption = 'local';
|
||||
}
|
||||
|
||||
cascadedCheckOption() {
|
||||
this._single.checkOption = 'cascaded';
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ViewBuilder_PG;
|
||||
Reference in New Issue
Block a user