dijkstra-backend-cloudron/node_modules/knex/lib/dialects/redshift/schema/compiler.js

15 lines
362 B
JavaScript

/* eslint max-len: 0 */
// Redshift Table Builder & Compiler
// -------
const inherits = require('inherits');
const SchemaCompiler_PG = require('../../postgres/schema/compiler');
function SchemaCompiler_Redshift() {
SchemaCompiler_PG.apply(this, arguments);
}
inherits(SchemaCompiler_Redshift, SchemaCompiler_PG);
module.exports = SchemaCompiler_Redshift;