mirror of
https://github.com/knex/knex.git
synced 2025-08-05 23:32:08 +00:00
15 lines
297 B
JavaScript
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;
|