Entity Table

From truxwiki.com
Revision as of 13:41, 21 May 2020 by Sam (talk | contribs) (Created page with "The <code>Entity</code> table holds information gleaned from exploited media. <syntaxhighlight lang="SQL"> CREATE TABLE "Entity" ( "ID" uuid NOT NULL, "MediaID" uuid...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The Entity table holds information gleaned from exploited media.

CREATE TABLE "Entity" (
    "ID" uuid NOT NULL,
    "MediaID" uuid NOT NULL,
    "FileID" uuid NOT NULL,
    "EntityTypeID" smallint NOT NULL,
    "EntityStringID" uuid NOT NULL,
    "Offset" bigint DEFAULT (-1) NOT NULL,
    "ObjectID" uuid NOT NULL,
    "ObjectTypeID" smallint DEFAULT 0 NOT NULL,
    "Length" bigint DEFAULT 0 NOT NULL,
    "DataTypeID" int NOT NULL
);