Alert Table

From truxwiki.com
Revision as of 08:33, 20 February 2023 by Sam (talk | contribs) (Created page with "The <code>[Alert]</code> table holds information gleaned from exploited media. <source lang="SQL"> CREATE TABLE "Alert" ( "ID" uuid NOT NULL, "BOLOID" uuid NOT NULL, "F...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The [Alert] table holds information gleaned from exploited media.

CREATE TABLE "Alert" (
  "ID" uuid NOT NULL,
  "BOLOID" uuid NOT NULL,
  "FileID" uuid NOT NULL,
  "InvestigatorID" uuid NOT NULL,
  "AlertStatusID" int NOT NULL,
  "Added" timestamp with time zone DEFAULT clock_timestamp() NOT NULL,
  "LastUpdate" timestamp with time zone DEFAULT clock_timestamp() NOT NULL
);