TriageFile Table

From truxwiki.com
Revision as of 16:33, 18 May 2023 by Sam (talk | contribs) (Created page with "These are the names and regular expressions of files and folders that will be loaded in a Triage Load. <source lang="SQL"> CREATE TABLE "TriageFile" ( "Name" text DEFAULT...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

These are the names and regular expressions of files and folders that will be loaded in a Triage Load.

CREATE TABLE "TriageFile" (
    "Name" text DEFAULT ''::text NOT NULL,
    "Description" text DEFAULT ''::text NOT NULL,
    "Why" text DEFAULT ''::text NOT NULL,
    "Type" integer DEFAULT 0 NOT NULL
);