0
Good morning, I’m facing the following problem
Executing (default): INSERT INTO `Users` (`id`,`name`,`email`,`avatar`,`password_hash`,`provider`,`createdAt`,`updatedAt`) VALUES (DEFAULT,?,?,?,?,?,?,?);
(node:3215) UnhandledPromiseRejectionWarning: SequelizeDatabaseError: Table 'salao.Users' doesn't exist
As we can see he is trying to insert in a table called "Users", the problem is that in BD the table is called "users" (with the lowercase initial). I’m using Mysql, Nodejs and Sequelize.
This tabletop solution worked perfectly for me. on 12/23/2020.
– Wendel Santos