nidus-sync/db/migrations/00033_h3cell_fieldseeker_traplocation.sql

6 lines
213 B
MySQL
Raw Normal View History

-- +goose Up
ALTER TABLE fieldseeker.traplocation ADD COLUMN h3cell h3index GENERATED ALWAYS AS (h3_latlng_to_cell(geospatial, 15)) STORED;
-- +goose Down
ALTER TABLE fieldseeker.traplocation DROP COLUMN h3cell;