Learning how to use Sequelize ORM with Nodejs. Own project with few examples.
node_modules/.bin/sequelize model:generate --name {entity_name} --attributes {attr_name}:{type[string,number,etc..],...}
Running this will migrate your models to the db
node_modules/.bin/sequelize db:migrate
Running this will generate your seeders
node_modules/.bin/sequelize seed:generate --name seed-{entity_name}
This command will execute the querys that are inside the seeders.
node_modules/.bin/sequelize db:seed:all