Now that we can pull out the geometry directly into a go object we don't need these and they complicate our insertions
12 lines
327 B
SQL
12 lines
327 B
SQL
-- +goose Up
|
|
ALTER TABLE address
|
|
DROP COLUMN location_latitude,
|
|
DROP COLUMN location_longitude;
|
|
ALTER TABLE feature
|
|
DROP COLUMN location_latitude,
|
|
DROP COLUMN location_longitude;
|
|
ALTER TABLE publicreport.report
|
|
DROP COLUMN location_latitude,
|
|
DROP COLUMN location_longitude;
|
|
ALTER TABLE signal
|
|
DROP COLUMN location_type;
|