Table: audit_retention_policy
Ce contenu n’est pas encore disponible dans votre langue.
Columns
Section titled “Columns”| Column | Type | Nullable | Notes |
|---|---|---|---|
category | text | no | — |
retention | interval | no | — |
updated_by | bigint | yes | — |
updated_at | timestamp | no | Default now() |
Constraints
Section titled “Constraints”CONSTRAINT audit_retention_policy_positive CHECK ((retention > '00:00:00'::interval))
Full DDL
Section titled “Full DDL”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.