자동으로 복수형으로 변환된다
npx sequelize model:generate --name user --attributes nickname:string,password:string
이란 명령어로 migrations 를 생성해도
createTable("users",
처럼 이름이 자동으로 복수형으로 설정되는 것을 볼 수 있다
model