Initial commit
This commit is contained in:
14
node_modules/knex/lib/dialects/redshift/schema/redshift-compiler.js
generated
vendored
Executable file
14
node_modules/knex/lib/dialects/redshift/schema/redshift-compiler.js
generated
vendored
Executable file
@@ -0,0 +1,14 @@
|
||||
/* 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;
|
||||
Reference in New Issue
Block a user