Content Table

From truxwiki.com
Revision as of 08:38, 20 February 2023 by Sam (talk | contribs) (Created page with "The <code>[Content]</code> table holds information about the location of contents. <source lang="SQL"> CREATE TABLE "Content" ( "Hash" uuid NOT NULL, "DepotID" uuid N...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The [Content] table holds information about the location of contents.

CREATE TABLE "Content" (
    "Hash" uuid NOT NULL,
    "DepotID" uuid NOT NULL,
    "Offset" bigint DEFAULT 0 NOT NULL,
    "Length" bigint DEFAULT 0 NOT NULL,
    "IsContainer" boolean DEFAULT false NOT NULL,
    "IsResident" boolean DEFAULT false NOT NULL
);