I was creating document_types table using following cli command
sequelize model:create --name User --attributes name:string, username:string, email:string, password:string
Solution: remove the space after comma between different attributes to avoid the error, correct command would be:
sequelize model:create --name User --attributes name:string,username:string,email:string,password:string
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With