Random `PostgresError: invalid input syntax for type bigint`
When attempting to query my database with
db.select().from(roster)
I get that error even though I made sure each column type is correct in my schema.ts file. Here is the full query line: and here is the entire error: 1 Reply
The only problem is I don't have a column named "newest" or any bigint columns
I was able to find out that for some reason my postgres automatically converted my int8 columns to bigint, so I updated my schema accordingly and still get the same error