Depot Table
Jump to navigation
Jump to search
The [Depot] table holds information about the location of depots.
CREATE TABLE "Depot" (
"ID" uuid NOT NULL,
"Filename" text DEFAULT ''::text NOT NULL,
"URI" text DEFAULT ''::text NOT NULL,
"DepotTypeID" smallint DEFAULT 0 NOT NULL,
"MaximumSize" bigint DEFAULT 0 NOT NULL,
"Size" bigint DEFAULT 0 NOT NULL,
"IsLongTerm" boolean DEFAULT false NOT NULL,
"CryptoKey" uuid DEFAULT '00000000-0000-0000-0000-000000000000'::uuid NOT NULL,
"DepotStatusID" smallint DEFAULT 0 NOT NULL
);