knex/lib/dialects/sqlite3/schema/sqlite-viewcompiler.js

12 lines
248 B
JavaScript
Raw Normal View History

2021-10-20 22:23:29 +02:00
/* 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;