UNPKG

@hscloud/sequelize-dmdb

Version:

Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Dameng, Amazon Redshift and Snowflake’s Data Cloud. It features solid transaction support, relations, eager and lazy loading, read replication and mo

11 lines (9 loc) 192 B
/** * Available index hints to be used for querying data in mysql for index hints. */ declare enum IndexHints { USE = 'USE', FORCE = 'FORCE', IGNORE = 'IGNORE' } export = IndexHints;