I'm using sequelize-cli, and generating migrations but we have to add the definitions and constraints manually even though we have already defined all of that in the model file.
I've worked in django-rest-framework and just the command
python manage.py createmigrations
checks all the apps and their models and creates migrations for each model with all the fields, their attributes and constraints and all the additions or deletion or updates to the model
Wondering if we can do that with sequelize-cli for nodejs
NOTE: Need a new migration file for each model just like in python ( dhango-rest-framework) with a timestamp
( Python doesn't have timestamp )
PS: Tried Using "sequelize-mig" but it creates one file