Skip to content

Commit 027e86f

Browse files
committed
fix: transport mode categorization
1 parent 5c4a29e commit 027e86f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

prisma/migrations/data_init.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ INSERT INTO `transport_mode` (`id`, `name`, `description`, `type`, `color`, `cre
5151
(1, 'Private Car', 'Individually owned motor vehicle used for personal trips.', 'PRIVATE', '#004494', NOW()),
5252
(2, 'Motorcycle / Scooter', 'Two-wheeled motorised vehicle for solo or two-person travel.', 'PRIVATE', '#FF632F', NOW()),
5353
(3, 'Carsharing', 'Shared access to cars on demand through a membership or app.', 'NSM', '#6FAE24', NOW()),
54-
(4, 'Bicycle (or e-bike)', 'User-owned bicycle for short-to-medium distance trips.', 'NSM', '#81BF2D', NOW()),
55-
(5, 'E-scooter', 'Electric micromobility vehicles', 'NSM', '#98C33A', NOW()),
56-
(6, 'Walking', 'Pedestrian travel for short distances; zero-emission active mode.', 'NSM', '#DADADA', NOW()),
54+
(4, 'Bicycle (or e-bike)', 'User-owned bicycle for short-to-medium distance trips.', 'PRIVATE', '#81BF2D', NOW()),
55+
(5, 'E-scooter', 'Electric micromobility vehicles', 'PRIVATE', '#98C33A', NOW()),
56+
(6, 'Walking', 'Pedestrian travel for short distances; zero-emission active mode.', 'PRIVATE', '#DADADA', NOW()),
5757
(7, 'Micromobility', '', 'NSM', '#B4D952', NOW()),
5858
(8, 'Ride hailing', 'Flexible shared transit that adapts routes and schedules to demand.', 'NSM', '#D0F06A', NOW()),
59-
(9, 'Taxi', 'Taxi ride hailing', 'NSM', '#55910b', NOW()),
59+
(9, 'Taxi', 'Taxi ride hailing', 'PRIVATE', '#55910b', NOW()),
6060
(10, 'Train', 'Metro, suburban railway, tram, etc.', 'PUBLIC_TRANSPORT', '#f97448', NOW()),
6161
(11, 'Bus', 'Or trolley bus, scheduled public transport on roads serving local or regional routes.', 'PUBLIC_TRANSPORT', '#4797d8', NOW()),
6262
(12, 'Ferry', 'Or water taxi, scheduled public transport on water routes.', 'PUBLIC_TRANSPORT', '#75BDFB', NOW()),

0 commit comments

Comments
 (0)