knex/lib/dialects/mysql/schema/mysql-viewcompiler.js

16 lines
348 B
JavaScript
Raw Permalink Normal View History

2021-10-20 22:23:29 +02:00
/* eslint max-len: 0 */
const ViewCompiler = require('../../../schema/viewcompiler.js');
class ViewCompiler_MySQL extends ViewCompiler {
constructor(client, viewCompiler) {
super(client, viewCompiler);
}
createOrReplace() {
this.createQuery(this.columns, this.selectQuery, false, true);
}
}
module.exports = ViewCompiler_MySQL;