knex/lib/dialects/sqlite3/schema/sqlite-viewcompiler.js
2021-10-20 23:23:29 +03:00

12 lines
248 B
JavaScript

/* eslint max-len: 0 */
const ViewCompiler = require('../../../schema/viewcompiler.js');
class ViewCompiler_PG extends ViewCompiler {
constructor(client, viewCompiler) {
super(client, viewCompiler);
}
}
module.exports = ViewCompiler_PG;