knex/lib/dialects/oracle/schema/columnbuilder.js
Tim Griesser f9aab9dc76 Major internal refactor
Beefed up transaction implementation, still needs tests
and cleanup of nested transaction queues.

Left todo:
- Fix commented out tests
- Fix oracle driver's transactions
2015-04-22 10:34:14 -04:00

18 lines
540 B
JavaScript

'use strict';
var inherits = require('inherits');
var ColumnBuilder = require('../../../schema/columnbuilder');
function ColumnBuilder_Oracle() {
ColumnBuilder.apply(this, arguments);
}
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