Files
netris-nestri/cloud/packages/core/src/common.ts
2025-09-06 16:50:44 +03:00

10 lines
301 B
TypeScript

import "zod-openapi/extend";
import { sql } from "drizzle-orm";
export namespace Common {
export const IdDescription = `Unique object identifier.
The format and length of IDs may change over time.`;
export const now = () => sql`now()`;
export const utc = () => sql`now() at time zone 'utc'`;
}