Entity Table

From truxwiki.com
Revision as of 08:50, 8 December 2020 by Sam (talk | contribs)
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
);