Closed GoogleCodeExporter closed 9 years ago
looks like the database gets not properly initialized. Manually adding to rows
to the table "location_type" with values (0, 'stop') and (1, 'station') solves
this problem. In psql, you would do it like this:
INSERT INTO idea.location_type(location_type_id, location_type_description)
VALUES(0, 'stop');
INSERT INTO idea.location_type(location_type_id, location_type_description)
VALUES(1, 'station');
After adding those two rows to the table, I was able to create new stops and
stations and save them in the database.
Original comment by rie...@gmail.com
on 4 May 2011 at 9:01
Added Marcel Rieser's suggestion... also did it manually in the South African
implementation, and it works fine.
Original comment by johanwjo...@gmail.com
on 13 Jul 2011 at 9:22
Original issue reported on code.google.com by
aaronant...@yahoo.com
on 24 Aug 2010 at 9:22