@@ -231,21 +231,21 @@ class EgoDpMvGriddistrict(Base):
231231 gem_clean = Column (Integer )
232232 zensus_sum = Column (Integer )
233233 zensus_count = Column (Integer )
234- zensus_density = Column (Numeric )
235- population_density = Column (Numeric )
234+ zensus_density = Column (Float ( 53 ) )
235+ population_density = Column (Float ( 53 ) )
236236 la_count = Column (Integer )
237- area_ha = Column (Numeric )
237+ area_ha = Column (Float ( 53 ) )
238238 la_area = Column (Numeric (10 , 1 ))
239239 free_area = Column (Numeric (10 , 1 ))
240240 area_share = Column (Numeric (4 , 1 ))
241- consumption = Column (Numeric )
242- consumption_per_area = Column (Numeric )
241+ consumption = Column (Float ( 53 ) )
242+ consumption_per_area = Column (Float ( 53 ) )
243243 dea_cnt = Column (Integer )
244- dea_capacity = Column (Numeric )
244+ dea_capacity = Column (Float ( 53 ) )
245245 lv_dea_cnt = Column (Integer )
246- lv_dea_capacity = Column (Numeric )
246+ lv_dea_capacity = Column (Float ( 53 ) )
247247 mv_dea_cnt = Column (Integer )
248- mv_dea_capacity = Column (Numeric )
248+ mv_dea_capacity = Column (Float ( 53 ) )
249249 geom_type = Column (Text )
250250 geom = Column (Geometry ('MULTIPOLYGON' , 3035 ), index = True )
251251
@@ -303,21 +303,21 @@ class EgoDpMvGriddistrict(Base):
303303 Column ('gem_clean' , Integer ),
304304 Column ('zensus_sum' , Integer ),
305305 Column ('zensus_count' , Integer ),
306- Column ('zensus_density' , Numeric ),
307- Column ('population_density' , Numeric ),
306+ Column ('zensus_density' , Float ( 53 ) ),
307+ Column ('population_density' , Float ( 53 ) ),
308308 Column ('la_count' , Integer ),
309- Column ('area_ha' , Numeric ),
309+ Column ('area_ha' , Float ( 53 ) ),
310310 Column ('la_area' , Numeric (10 , 1 )),
311311 Column ('free_area' , Numeric (10 , 1 )),
312312 Column ('area_share' , Numeric (4 , 1 )),
313- Column ('consumption' , Numeric ),
314- Column ('consumption_per_area' , Numeric ),
313+ Column ('consumption' , Float ( 53 ) ),
314+ Column ('consumption_per_area' , Float ( 53 ) ),
315315 Column ('dea_cnt' , Integer ),
316- Column ('dea_capacity' , Numeric ),
316+ Column ('dea_capacity' , Float ( 53 ) ),
317317 Column ('lv_dea_cnt' , Integer ),
318- Column ('lv_dea_capacity' , Numeric ),
318+ Column ('lv_dea_capacity' , Float ( 53 ) ),
319319 Column ('mv_dea_cnt' , Integer ),
320- Column ('mv_dea_capacity' , Numeric ),
320+ Column ('mv_dea_capacity' , Float ( 53 ) ),
321321 Column ('geom_type' , Text ),
322322 Column ('geom' , Geometry ('MULTIPOLYGON' , 3035 ), index = True ),
323323 schema = 'grid'
0 commit comments