mirror of
https://github.com/knex/knex.git
synced 2025-07-04 15:41:07 +00:00
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
![]() |
// PostgreSQL Schema Builder & Compiler
|
||
|
// -------
|
||
|
module.exports = function(client) {
|
||
|
|
||
|
var _ = require('lodash');
|
||
|
var inherits = require('inherits');
|
||
|
var Schema = require('../../../schema');
|
||
|
|
||
|
// Schema Builder
|
||
|
// -------
|
||
|
|
||
|
function SchemaBuilder_PG() {
|
||
|
this.client = client;
|
||
|
Schema.Builder.apply(this, arguments);
|
||
|
}
|
||
|
inherits(SchemaBuilder_PG, Schema.Builder);
|
||
|
|
||
|
// TODO: Regex this in the schema's runner.
|
||
|
// if (parseFloat(client.version) >= 9.2)
|
||
|
|
||
|
// Schema Compiler
|
||
|
// -------
|
||
|
|
||
|
function SchemaCompiler_PG() {
|
||
|
this.client = client;
|
||
|
this.Formatter = client.Formatter;
|
||
|
Schema.Compiler.apply(this, arguments);
|
||
|
}
|
||
|
inherits(SchemaCompiler_PG, Schema.Compiler);
|
||
|
|
||
|
// Check whether the current table
|
||
|
SchemaCompiler_PG.prototype.hasTable = function(tableName) {
|
||
|
this.push({
|
||
|
sql: 'select * from information_schema.tables where table_name = ' + this.formatter.parameter(tableName),
|
||
|
output: function(resp) {
|
||
|
return resp.rows.length > 0;
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
// Compile the query to determine if a column exists in a table.
|
||
|
SchemaCompiler_PG.prototype.hasColumn = function(tableName, columnName) {
|
||
|
this.push({
|
||
|
sql: 'select * from information_schema.columns where table_name = ' +
|
||
|
this.formatter.parameter(tableName) + ' and column_name = ' + this.formatter.parameter(columnName),
|
||
|
output: function(resp) {
|
||
|
return resp.rows.length > 0;
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
|
||
|
// Compile a rename table command.
|
||
|
SchemaCompiler_PG.prototype.renameTable = function(from, to) {
|
||
|
this.pushQuery('alter table ' + this.formatter.wrap(from) + ' rename to ' + this.formatter.wrap(to));
|
||
|
};
|
||
|
|
||
|
client.SchemaBuilder = SchemaBuilder_PG;
|
||
|
client.SchemaCompiler = SchemaCompiler_PG;
|
||
|
|
||
|
};
|