Skip to content
Snippets Groups Projects

Separated completeness and area_type fields

Closed Felix Delattre requested to merge feature/separate-area-type-and-completeness into master
Files
2
ALTER TABLE public.obm_tiles
RENAME COLUMN completeness TO area_type;
ALTER TABLE public.obm_tiles
ALTER COLUMN area_type [SET DATA] TYPE bit(4);
ALTER TABLE public.obm_tiles
ADD COLUMN IF NOT EXISTS completeness float;
Loading