cleanup.sql 543 B

1234567891011121314151617
  1. ----------------------------------------------------------------------------
  2. -- cleanup.sql
  3. --
  4. -- This script will remove all tables and spatial_references table entries
  5. -- created by the sql examples.
  6. ----------------------------------------------------------------------------
  7. DELETE FROM spatial_references WHERE srid IN (1000, 1001);
  8. ---------------------------- Cleanup -------------------------------
  9. DROP TABLE mpolygon_t;
  10. DROP TABLE multiline_t;
  11. DROP TABLE multipoint_t;
  12. DROP TABLE polygon_t;
  13. DROP TABLE line_t;
  14. DROP TABLE point_t;