@@ -13,7 +13,7 @@ class Event(ExportModelOperationsMixin('event'), BaseModel):
1313 id = models .CharField (max_length = 32 , primary_key = True )
1414
1515 # Description
16- description = models .CharField (max_length = 1024 )
16+ description = models .CharField (max_length = 2048 )
1717 event_type = models .CharField (max_length = 32 )
1818 event_sub_type = models .CharField (max_length = 32 , blank = True , default = '' )
1919
@@ -26,15 +26,15 @@ class Event(ExportModelOperationsMixin('event'), BaseModel):
2626 direction = models .CharField (max_length = 32 )
2727 location = models .GeometryField ()
2828 polygon = models .GeometryField (null = True )
29- route_at = models .CharField (max_length = 128 )
30- route_from = models .CharField (max_length = 128 )
31- route_to = models .CharField (max_length = 128 , blank = True )
29+ route_at = models .CharField (max_length = 1024 )
30+ route_from = models .CharField (max_length = 1024 )
31+ route_to = models .CharField (max_length = 1024 , blank = True )
3232 area = models .ManyToManyField (Area , blank = True )
3333
3434 # CARS API info
35- highway_segment_names = models .CharField (max_length = 256 , blank = True , default = '' )
36- location_description = models .CharField (max_length = 256 , blank = True , default = '' )
37- closest_landmark = models .CharField (max_length = 256 , blank = True , default = '' )
35+ highway_segment_names = models .CharField (max_length = 1024 , blank = True , default = '' )
36+ location_description = models .CharField (max_length = 2048 , blank = True , default = '' )
37+ closest_landmark = models .CharField (max_length = 1024 , blank = True , default = '' )
3838 next_update = models .DateTimeField (null = True , blank = True )
3939 start_point_linear_reference = models .FloatField (null = True )
4040
0 commit comments