@luminati-io/knex
Version:
A batteries-included SQL query & schema builder for PostgresSQL, MySQL, CockroachDB, MSSQL and SQLite3
15 lines (10 loc) • 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;