I want to start using Sequelize, a module that allows ORM for mysql in node.js. I was wondering if it is possible to automatically create models like CakePHP. In CakePHP, it will read table information and automatically create associations and fields with their types in the model. I really really would not want to completely display all my tables manually, as some of them are relatively large. Is there something that will do this for me? Or can I deal with all the models myself?
source share