While generating seed data, you have to make sure that the value generated matches the Database Schema requirements. For example, it could be the character length.
const reviewTitle = faker.lorem.words(10).slice(0, 50) While generating seed data, you have to make sure that the value generated matches the Database Schema requirements. For example, it could be the character length.
const reviewTitle = faker.lorem.words(10).slice(0, 50)