Adding a new column to have the name of the cached analysis in case there is one, fixes #273

pull/274/head
Antonio Zamorano 8 years ago
parent 415d96082e
commit 6e130c336e

@ -62,3 +62,12 @@ DO $$
WHEN duplicate_column THEN END;
END;
$$;
DO $$
BEGIN
BEGIN
ALTER TABLE cartodb.cdb_analysis_catalog ADD COLUMN cache_table text;
EXCEPTION
WHEN duplicate_column THEN END;
END;
$$;

Loading…
Cancel
Save