knex/src/dialects/oracle/schema/columnbuilder.js
Rhys van der Waerden 06e3447440 Remove duplicate spaces in assignments.
These were previously horizontally aligned. The esnext conversion disrupted them all.
2016-05-18 19:59:24 +10:00

20 lines
544 B
JavaScript

import inherits from 'inherits';
import ColumnBuilder from '../../../schema/columnbuilder';
import {toArray} from 'lodash'
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;
};
export default ColumnBuilder_Oracle