BE-SPAN/node_modules/sequelize-oracle/lib/model/attribute.js

9 lines
176 B
JavaScript
Raw Permalink Normal View History

2024-10-20 15:04:16 +00:00
'use strict';
var Attribute = function(options) {
if (options.type === undefined) options = {type: options};
this.type = options.type;
};
module.exports = Attribute;