dataservices-api/client/old_versions/cdb_dataservices_client--0.29.0--0.30.0.sql

15 lines
604 B
MySQL
Raw Normal View History

2020-01-14 20:34:02 +08:00
--DO NOT MODIFY THIS FILE, IT IS GENERATED AUTOMATICALLY FROM SOURCES
-- Complain if script is sourced in psql, rather than via CREATE EXTENSION
2020-04-07 18:26:51 +08:00
\echo Use "ALTER EXTENSION cdb_dataservices_client UPDATE TO '0.30.0'" to load this file. \quit
2020-01-14 20:34:02 +08:00
-- Make sure we have a sane search path to create/update the extension
SET search_path = "$user",cartodb,public,cdb_dataservices_client;
-- HERE goes your code to upgrade/downgrade
2020-04-07 18:26:51 +08:00
-- In 0.30.0 we removed cdb_dataservices_client.geomval and rely on postgis_raster if necessary
2020-03-17 18:20:47 +08:00
DO $$
BEGIN
DROP TYPE IF EXISTS cdb_dataservices_client.geomval RESTRICT;
2020-04-07 18:26:51 +08:00
END$$;