diff --git a/schema/postgres/sqls/pg_PANDAARCH_TABLE.sql b/schema/postgres/sqls/pg_PANDAARCH_TABLE.sql index 1295a56..700ebc1 100644 --- a/schema/postgres/sqls/pg_PANDAARCH_TABLE.sql +++ b/schema/postgres/sqls/pg_PANDAARCH_TABLE.sql @@ -189,7 +189,8 @@ CREATE TABLE jobsarchived ( meancorecount decimal(8,2), gco2_regional decimal(10,2), gco2_global decimal(10,2), - cpu_architecture_level varchar(20) + cpu_architecture_level varchar(20), + outputfiletype varchar(32) ) ; COMMENT ON COLUMN jobsarchived.avgpss IS E'Average PSS in the job'; COMMENT ON COLUMN jobsarchived.avgrss IS E'Average RSS in the job'; diff --git a/schema/postgres/sqls/pg_PANDA_TABLE.sql b/schema/postgres/sqls/pg_PANDA_TABLE.sql index 233c5d5..763299a 100644 --- a/schema/postgres/sqls/pg_PANDA_TABLE.sql +++ b/schema/postgres/sqls/pg_PANDA_TABLE.sql @@ -1209,7 +1209,8 @@ CREATE TABLE jobsactive4 ( meancorecount decimal(8,2), gco2_regional decimal(10,2), gco2_global decimal(10,2), - cpu_architecture_level varchar(20) + cpu_architecture_level varchar(20), + outputfiletype varchar(32), ) ; COMMENT ON TABLE jobsactive4 IS E'Table for hosting all PanDA jobs that are in active running mode. All timestamp and date type columns are in UTC'; COMMENT ON COLUMN jobsactive4.assignedpriority IS E'defined priority value'; @@ -1492,7 +1493,8 @@ CREATE TABLE jobsarchived4 ( meancorecount decimal(8,2), gco2_regional decimal(10,2), gco2_global decimal(10,2), - cpu_architecture_level varchar(20) + cpu_architecture_level varchar(20), + outputfiletype varchar(32) ) PARTITION BY RANGE (modificationtime) ; COMMENT ON TABLE jobsarchived4 IS E'Table for hosting all PanDA jobs that are in finished, failed or cancelled status. Data is regularly copied to an archive table in ATLAS_PANDAARCH schema. Data retention of the JOBSARCHIVED4 table is defined to be 3 days (can be changed if necessary). All timestamp and date type columns are in UTC '; COMMENT ON COLUMN jobsarchived4.assignedpriority IS E'defined priority value'; @@ -1791,7 +1793,8 @@ CREATE TABLE jobsdefined4 ( meancorecount decimal(8,2), gco2_regional decimal(10,2), gco2_global decimal(10,2), - cpu_architecture_level varchar(20) + cpu_architecture_level varchar(20), + outputfiletype varchar(32) ) ; COMMENT ON COLUMN jobsdefined4.assignedpriority IS E'defined priority value'; COMMENT ON COLUMN jobsdefined4.atlasrelease IS E'Release required to run the job'; @@ -2086,7 +2089,8 @@ CREATE TABLE jobswaiting4 ( meancorecount decimal(8,2), gco2_regional decimal(10,2), gco2_global decimal(10,2), - cpu_architecture_level varchar(20) + cpu_architecture_level varchar(20), + outputfiletype varchar(32) ) ; COMMENT ON TABLE jobswaiting4 IS E'Table for hosting all PanDA jobs that are in waiting state. The columns (and their description) are the same as the ones in JOBSACTIVE4 table. All timestamp and date type columns are in UTC'; COMMENT ON COLUMN jobswaiting4.assignedpriority IS E'defined priority value'; diff --git a/schema/postgres/version b/schema/postgres/version index e484aaf..cd23180 100644 --- a/schema/postgres/version +++ b/schema/postgres/version @@ -1 +1 @@ -0.0.16 \ No newline at end of file +0.0.17