Prisma-like ORM built on top of Deno KV. Allows you to write your database schemas and relations using Zod schemas, and run queries using familiar syntax from Prisma.
In the same way as in Prisma we have `createdAt DateTime @default(now())`, we should have in Pentagon something along the lines of: ```typescript const User = z.object({ createdAt: default(z.date(), () => new Date()), id: default(z.string(), () => crypto.randomUUID()) // or createdAt: default(z.date(), "now"), id: default(z.string(), "uuid") }); ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by skoshx and has received 6 comments.