UNPKG

one-schema

Version:
12 lines (11 loc) 365 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function float64ToSequelize(Sequelize, field) { if (field.settings.type !== 'float64') { throw new Error("float64ToSequelize called on field with type: " + field.settings.type); } return { type: Sequelize.DOUBLE, }; } exports.default = float64ToSequelize;