knex/src/dialects/postgres/schema/columncompiler.js

80 lines
2.0 KiB
JavaScript
Raw Normal View History

2016-03-02 17:07:05 +01:00
// PostgreSQL Column Compiler
// -------
import inherits from 'inherits';
import ColumnCompiler from '../../../schema/columncompiler';
import * as helpers from '../../../helpers';
2016-03-02 17:07:05 +01:00
import { assign } from 'lodash'
2016-03-02 17:07:05 +01:00
function ColumnCompiler_PG() {
ColumnCompiler.apply(this, arguments);
this.modifiers = ['nullable', 'defaultTo', 'comment']
}
inherits(ColumnCompiler_PG, ColumnCompiler);
assign(ColumnCompiler_PG.prototype, {
// Types
// ------
bigincrements: 'bigserial primary key',
bigint: 'bigint',
binary: 'bytea',
bit(column) {
return column.length !== false ? `bit(${column.length})` : 'bit';
2016-03-02 17:07:05 +01:00
},
bool: 'boolean',
// Create the column definition for an enum type.
// Using method "2" here: http://stackoverflow.com/a/10984951/525714
enu(allowed) {
return `text check (${this.formatter.wrap(this.args[0])} in ('${allowed.join("', '")}'))`;
2016-03-02 17:07:05 +01:00
},
double: 'double precision',
decimal(precision, scale) {
if (precision === null) return 'decimal';
return `decimal(${this._num(precision, 8)}, ${this._num(scale, 2)})`;
},
2016-03-02 17:07:05 +01:00
floating: 'real',
increments: 'serial primary key',
json(jsonb) {
2016-03-02 17:07:05 +01:00
if (jsonb) helpers.deprecate('json(true)', 'jsonb()')
return jsonColumn(this.client, jsonb);
},
jsonb() {
2016-03-02 17:07:05 +01:00
return jsonColumn(this.client, true);
},
smallint: 'smallint',
tinyint: 'smallint',
datetime(without) {
2016-03-02 17:07:05 +01:00
return without ? 'timestamp' : 'timestamptz';
},
timestamp(without) {
2016-03-02 17:07:05 +01:00
return without ? 'timestamp' : 'timestamptz';
},
uuid: 'uuid',
// Modifiers:
// ------
comment(comment) {
const columnName = this.args[0] || this.defaults('columnName');
2016-03-02 17:07:05 +01:00
this.pushAdditional(function() {
this.pushQuery(`comment on column ${this.tableCompiler.tableName()}.` +
this.formatter.wrap(columnName) + " is " + (comment ? `'${comment}'` : 'NULL'));
2016-03-02 17:07:05 +01:00
}, comment);
}
})
function jsonColumn(client, jsonb) {
if (!client.version || parseFloat(client.version) >= 9.2) return jsonb ? 'jsonb' : 'json';
return 'text';
}
export default ColumnCompiler_PG;