Chaging the type of the cached tables to a regclass array, fixes #273

This commit is contained in:
Antonio Zamorano 2016-08-12 09:42:50 +02:00
parent 6e130c336e
commit 5d323456ee

View File

@ -66,7 +66,7 @@ $$;
DO $$ DO $$
BEGIN BEGIN
BEGIN BEGIN
ALTER TABLE cartodb.cdb_analysis_catalog ADD COLUMN cache_table text; ALTER TABLE cartodb.cdb_analysis_catalog ADD COLUMN cache_tables regclass[] NOT NULL DEFAULT '{}';
EXCEPTION EXCEPTION
WHEN duplicate_column THEN END; WHEN duplicate_column THEN END;
END; END;