@suluk/drizzle - v0.1.6
    Preparing search index...

    Interface TableZodSchemas

    The three Zod projections of a table.

    interface TableZodSchemas {
        select: ZodType;
        insert: ZodType;
        update: ZodType;
    }
    Index

    Properties

    Properties

    select: ZodType

    Full row shape — every column required (createSelectSchema).

    insert: ZodType

    Write shape — notNull-AND-no-default columns required; PK/defaulted/nullable relaxed (createInsertSchema).

    update: ZodType

    Partial write shape — every insert field optional (insert.partial()), for PATCH.