tulsawebdevs / django-multi-gtfs

Django app to import and export General Transit Feed Specification (GTFS)
http://tulsawebdevs.org/
Apache License 2.0
50 stars 32 forks source link

When re-importing a feed using importgtfs the feed is duplicated in the database instead of updated #82

Closed ccort closed 6 years ago

ccort commented 6 years ago

As the title says, is this the expected behavior? If so, on a production environment how do you update a feed? I am only trying to avoid deleting it first and import it after.

jwhitlock commented 6 years ago

Yes, each import is a new feed. There is no way to update an existing feed from a GTFS file with management commands.

ccort commented 6 years ago

Ok I assumed as much, I will then delete the feed prior to importing the updated version. Thanks