mirror of
https://github.com/knex/knex.git
synced 2025-06-26 22:00:25 +00:00
22 lines
404 B
JavaScript
22 lines
404 B
JavaScript
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;
|