mirror of
https://github.com/knex/knex.git
synced 2025-07-15 13:01:00 +00:00
18 lines
542 B
JavaScript
18 lines
542 B
JavaScript
'use strict';
|
|
|
|
var inherits = require('inherits');
|
|
var ColumnBuilder = require('../../../schema/columnbuilder');
|
|
|
|
function ColumnBuilder_Oracle(client) {
|
|
ColumnBuilder.call(this, client);
|
|
}
|
|
inherits(ColumnBuilder_Oracle, ColumnBuilder);
|
|
|
|
// checkIn added to the builder to allow the column compiler to change the
|
|
// order via the modifiers ("check" must be after "default")
|
|
ColumnBuilder_Oracle.prototype.checkIn = function () {
|
|
this._modifiers.checkIn = _.toArray(arguments);
|
|
return this;
|
|
};
|
|
|
|
module.exports = ColumnBuilder_Oracle |