Tag Table

From truxwiki.com
Revision as of 18:29, 1 March 2023 by Sam (talk | contribs) (Created page with "These are the tags that can be used in Truxton. <source lang="SQL"> CREATE TABLE "Tag" ( "ID" uuid NOT NULL, "Name" text DEFAULT ''::text NOT NULL, "Description"...")
(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 "Tag" (
    "ID" uuid NOT NULL,
    "Name" text DEFAULT ''::text NOT NULL,
    "Description" text DEFAULT ''::text NOT NULL,
    "CategoryID" uuid NOT NULL
);