# HG changeset patch # User Nicolas Saunier # Date 1712158696 14400 # Node ID a477ad82ab665662dda6996981c49fd851ff09d7 # Parent ef68d4ba7dae80dc833676da1d46d3bb0781d08a minor addition to drop tables diff -r ef68d4ba7dae -r a477ad82ab66 trafficintelligence/storage.py --- a/trafficintelligence/storage.py Mon Mar 25 17:05:20 2024 -0400 +++ b/trafficintelligence/storage.py Wed Apr 03 11:38:16 2024 -0400 @@ -50,6 +50,8 @@ dropTables(connection, ['objects', 'objects_features']) elif dataType == 'interaction': dropTables(connection, ['interactions', 'indicators']) + elif dataType == 'curvilinear': + dropTables(connection, ['curvilinear_positions']) elif dataType == 'bb': dropTables(connection, ['bounding_boxes']) elif dataType == 'pois':