Technicality
· 16TH OF SEPTEMBER, THE YEAR 2004DELETING A SPATIAL TABLE IN POSTGIS
Don’t just drop the table. First run
select DropGeometryColumn( 'schema', 'table', 'geometry_column' );
and then drop the table. Apparently there’s a DropGeometryTable() in CVS, so it should be easier in the future.

NO COMMENTS YET