Type 'string | number' is not assignable to type 'string'.
Type 'string | number' is not assignable to type 'string'.
but my schema and migration files clearly state title is a string. Where is this coming from? It's really strange.
generator client { provider = "prisma-client-js"}datasource db { provider = "postgresql" url = env("DATABASE_URL")}model Book { id String @id author String avg_rating Int book_id Int createdAt DateTime @default(now()) date_read String isbn String isbn_13 String month_read Int number_of_pages Int publisher String shelf String title String user_rating Int year_read Int}
generator client { provider = "prisma-client-js"}datasource db { provider = "postgresql" url = env("DATABASE_URL")}model Book { id String @id author String avg_rating Int book_id Int createdAt DateTime @default(now()) date_read String isbn String isbn_13 String month_read Int number_of_pages Int publisher String shelf String title String user_rating Int year_read Int}