CREATE TABLE radar_geohash (
    tile_id character varying(12) NOT NULL,
    tag_id uuid NOT NULL,

    PRIMARY KEY(tile_id, tag_id),
    FOREIGN KEY(tag_id) REFERENCES "user_tags"(tag_id) ON DELETE CASCADE
);
