knex/lib/dialects/redshift/schema/redshift-compiler.js
2021-01-01 17:46:10 +02:00

15 lines
297 B
JavaScript

/* eslint max-len: 0 */
// Redshift Table Builder & Compiler
// -------
const SchemaCompiler_PG = require('../../postgres/schema/pg-compiler');
class SchemaCompiler_Redshift extends SchemaCompiler_PG {
constructor() {
super(...arguments);
}
}
module.exports = SchemaCompiler_Redshift;