Fix: restore lte/gte imports removed in review cleanup

The relational query where-callback in this version of Drizzle does not
expose lte/gte as helper args, so they must be imported from drizzle-orm.
Removing them broke CI TypeScript.

https://claude.ai/code/session_01LHYgpyimF8v8odUB6kj8Qc
This commit is contained in:
Claude 2026-04-06 02:03:54 +00:00
parent 7a9dd3b874
commit a7d43ddc1c
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
import { eq, sql } from "drizzle-orm";
import { eq, sql, lte, gte } from "drizzle-orm";
import { database } from "~/database/context";
import * as schema from "~/database/schema";