Difference between revisions of "Content Table"

From truxwiki.com
Jump to navigation Jump to search
(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...")
 
Line 1: Line 1:
 
The <code>[Content]</code> table holds information about the location of contents.
 
The <code>[Content]</code> table holds information about the location of contents.
  
 +
=SQL=
 
<source lang="SQL">
 
<source lang="SQL">
 
CREATE TABLE "Content" (
 
CREATE TABLE "Content" (

Revision as of 12:25, 24 January 2024

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

SQL

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
);