UNPKG

@sangaman/xud

Version:
15 lines 515 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (sequelize, DataTypes) => { const attributes = { id: { type: DataTypes.STRING, primaryKey: true }, tokenAddress: { type: DataTypes.STRING, allowNull: true }, }; const options = { tableName: 'currencies', timestamps: false, }; const Currency = sequelize.define('Currency', attributes, options); return Currency; }; //# sourceMappingURL=Currency.js.map