Document new fields
This commit is contained in:
parent
064b26ccd3
commit
89e991aae9
@ -1,6 +1,7 @@
|
|||||||
-- Table to register analysis nodes from https://github.com/cartodb/camshaft
|
-- Table to register analysis nodes from https://github.com/cartodb/camshaft
|
||||||
CREATE TABLE IF NOT EXISTS
|
CREATE TABLE IF NOT EXISTS
|
||||||
cartodb.cdb_analysis_catalog (
|
cartodb.cdb_analysis_catalog (
|
||||||
|
-- useful for multi account deployments
|
||||||
username text,
|
username text,
|
||||||
-- md5 hex hash
|
-- md5 hex hash
|
||||||
node_id char(40) CONSTRAINT cdb_analysis_catalog_pkey PRIMARY KEY,
|
node_id char(40) CONSTRAINT cdb_analysis_catalog_pkey PRIMARY KEY,
|
||||||
@ -22,7 +23,9 @@ cartodb.cdb_analysis_catalog (
|
|||||||
hits NUMERIC DEFAULT 0,
|
hits NUMERIC DEFAULT 0,
|
||||||
-- should register what was the last node using current node
|
-- should register what was the last node using current node
|
||||||
last_used_from char(40),
|
last_used_from char(40),
|
||||||
|
-- last job modifying the node
|
||||||
last_modified_by uuid,
|
last_modified_by uuid,
|
||||||
|
-- store error message for failures
|
||||||
error_message text
|
error_message text
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user