I have updated my table name (from 'StaffMembers' to 'staff' )before running sequelize migration and created a table in postgres db with new name successfully. but when i try to insert a user sequelize still refer old tabel name.
Executing (default): INSERT INTO "StaffMembers" ("id","firstName","lastName","email","password
I expect updated table name in "INSERT INTO" command i.e "staff" instead of "StaffMember"