@sangaman/xud
Version:
Exchange Union Daemon
15 lines • 515 B
JavaScript
;
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