UNPKG

sql-dao

Version:

database access objects for sql databases

20 lines (18 loc) 313 B
class ColumnType { constructor () { /** * integer, float, double, string, Date * @member {string} */ this.type = undefined /** * @member {number} */ this.min = undefined /** * @member {number} */ this.max = undefined } } module.exports = ColumnType