objection
Version:
An SQL-friendly ORM for Node.js
24 lines (20 loc) • 417 B
JavaScript
export default class TableInsertion {
constructor(modelClass, isJoinTableInsertion) {
/**
* @type {Constructor.<Model>}
*/
this.modelClass = modelClass;
/**
* @type {boolean}
*/
this.isJoinTableInsertion = isJoinTableInsertion;
/**
* @type {Array.<Model>}
*/
this.models = [];
/**
* @type {Array.<Boolean>}
*/
this.isInputModel = [];
}
}