Difference between revisions of "Entity Table"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
The <code>[Entity]</code> table holds information gleaned from exploited media. | The <code>[Entity]</code> table holds information gleaned from exploited media. | ||
| − | < | + | <source lang="SQL"> |
CREATE TABLE "Entity" ( | CREATE TABLE "Entity" ( | ||
"ID" uuid NOT NULL, | "ID" uuid NOT NULL, | ||
| Line 14: | Line 14: | ||
"DataTypeID" int NOT NULL | "DataTypeID" int NOT NULL | ||
); | ); | ||
| − | </ | + | </source> |
Revision as of 08:50, 8 December 2020
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
);