Log Table

From truxwiki.com
Revision as of 10:26, 25 July 2022 by Sam (talk | contribs) (Created page with "This is where Truxton stores messages to be gathered to create the Load Log. <source lang="SQL"> CREATE TABLE "Log" ( "MediaID" uuid NOT NU...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This is where Truxton stores messages to be gathered to create the Load Log.

CREATE TABLE "Log" (
    "MediaID" uuid NOT NULL,
    "When" timestamp without time zone NOT NULL,
    "LogStringTypeID" integer DEFAULT 0 NOT NULL,
    "LogStringSourceID" bigint DEFAULT 0 NOT NULL,
    "ProcessID" integer DEFAULT 0 NOT NULL,
    "ThreadID" integer DEFAULT 0 NOT NULL,
    "LogStringClientID" bigint DEFAULT 0 NOT NULL,
    "LogStringUserID" bigint DEFAULT 0 NOT NULL,
    "LogStringMessageID" bigint DEFAULT 0 NOT NULL
);