Free Table

From truxwiki.com
Revision as of 12:02, 24 January 2024 by Sam (talk | contribs) (Created page with "These are the tags that can be used in Truxton. <source lang="SQL"> CREATE TABLE "Free" ( "ID" uuid NOT NULL, "MediaID" uuid NOT NULL, "MediaOffset" bigint DEFAUL...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

These are the tags that can be used in Truxton.

CREATE TABLE "Free" (
    "ID" uuid NOT NULL,
    "MediaID" uuid NOT NULL,
    "MediaOffset" bigint DEFAULT 0 NOT NULL,
    "DepotID" uuid NOT NULL,
    "Offset" bigint DEFAULT 0 NOT NULL,
    "Length" bigint DEFAULT 0 NOT NULL,
    "EndingOffset" bigint DEFAULT 0 NOT NULL,
    "FileID" uuid NOT NULL
);