Ir al contenido

Table: audit_retention_policy

Esta página aún no está disponible en tu idioma.

ColumnTypeNullableNotes
categorytextno
retentionintervalno
updated_bybigintyes
updated_attimestampnoDefault now()
  • CONSTRAINT audit_retention_policy_positive CHECK ((retention > '00:00:00'::interval))
CREATE TABLE public.audit_retention_policy (
category text NOT NULL,
retention interval NOT NULL,
updated_by bigint,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT audit_retention_policy_positive CHECK ((retention > '00:00:00'::interval))
);

Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.