File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -3062,6 +3062,21 @@ COMMENT ON COLUMN "ATLAS_PANDA"."ERROR_DESCRIPTIONS"."DESCRIPTION" IS 'Detailed
30623062COMMENT ON COLUMN "ATLAS_PANDA"."ERROR_DESCRIPTIONS"."CATEGORY" IS 'ID of error category';
30633063
30643064
3065+ --------------------------------------------------------
3066+ -- DDL for Table SW_TAGS
3067+ --------------------------------------------------------
3068+ CREATE TABLE "ATLAS_PANDA"."SW_TAGS"
3069+ ( "PANDA_QUEUE" VARCHAR2(50 BYTE),
3070+ "DATA" CLOB,
3071+ "LAST_UPDATE" DATE,
3072+ CONSTRAINT "SW_TAGS_DATA_VALIDATION" CHECK (DATA is JSON) ENABLE
3073+ );
3074+
3075+ COMMENT ON COLUMN "ATLAS_PANDA"."SW_TAGS"."PANDA_QUEUE" IS 'PanDA queue name';
3076+ COMMENT ON COLUMN "ATLAS_PANDA"."SW_TAGS"."DATA" IS 'PanDA queue name';
3077+ COMMENT ON COLUMN "ATLAS_PANDA"."SW_TAGS"."LAST_UPDATE" IS 'Last time the PanDA queue was seen/updated';
3078+ COMMENT ON TABLE "ATLAS_PANDA"."SW_TAGS" IS 'Table to store the SW Tag configuration for each panda queue in flat format';
3079+
30653080--------------------------------------------------------
30663081-- DDL for Index JEDI_DATASETCONTENT_LFN_IDX
30673082--------------------------------------------------------
You can’t perform that action at this time.
0 commit comments