Event Table

From truxwiki.com
Revision as of 08:51, 8 December 2020 by Sam (talk | contribs)
Jump to navigation Jump to search

This table holds the different events that Truxton finds.

CREATE TABLE "Event"
(
  "ID" uuid NOT NULL,
  "Start" timestamp without time zone NOT NULL,
  "End" timestamp without time zone NOT NULL,
  "Title" text DEFAULT ''::text NOT NULL,
  "Description" text DEFAULT ''::text NOT NULL,
  "FileID" uuid NOT NULL,
  "MediaID" uuid NOT NULL,
  "EventTypeID" smallint DEFAULT 0 NOT NULL
);