InvestigatorAction Table

From truxwiki.com
Revision as of 10:15, 25 July 2022 by Sam (talk | contribs) (Created page with "The <code>[InvestigatorAction]</code> table holds information about what someone did while using the Analyst Desktop. <source lang="SQL"> CREATE TABLE "InvestigatorAction" (...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The [InvestigatorAction] table holds information about what someone did while using the Analyst Desktop.

CREATE TABLE "InvestigatorAction" (
    "ID" uuid NOT NULL,
    "InvestigationID" uuid NOT NULL,
    "InvestigatorID" uuid NOT NULL,
    "When" timestamp without time zone DEFAULT (clock_timestamp() at time zone 'utc') NOT NULL,
    "Message" text DEFAULT ''::text NOT NULL,
    "State" text DEFAULT ''::text NOT NULL
);

The [State] column allows applications to store some information about the event. It is rarely used.