---------------------------------------------------------------------------- -- cleanup.sql -- -- This script will remove all tables and spatial_references table entries -- created by the sql examples. ---------------------------------------------------------------------------- DELETE FROM spatial_references WHERE srid IN (1000, 1001); ---------------------------- Cleanup ------------------------------- DROP TABLE mpolygon_t; DROP TABLE multiline_t; DROP TABLE multipoint_t; DROP TABLE polygon_t; DROP TABLE line_t; DROP TABLE point_t;