feat: add recipient filter to documents search in admin panel

This commit is contained in:
Catalin Pit
2026-08-24 15:29:08 +03:00
parent 1de57a9e43
commit 2cc6007c82
4 changed files with 45 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
/**
* The maximum value of a Postgres `INT4` (32-bit signed integer) column, which
* is what Prisma `Int` ID columns are stored as. Filtering an `Int` column by
* a larger value makes Prisma throw a conversion error at runtime.
*/
export const MAX_POSTGRES_INT = 2147483647;