Django workflow when modifying models frequently?
问题 as I usually don't do the up front design of my models in Django projects I end up modifying the models a lot and thus deleting my test database every time (because "syncdb" won't ever alter the tables automatically for you). Below lies my workflow and I'd like to hear about yours. Any thoughts welcome.. Modify the model. Delete the test database. (always a simple sqlite database for me.) Run "syncdb". Generate some test data via code. goto 1. A secondary question regarding this.. In case