[Answered ]-What is the recommended way to create a blank row in the DB for a django Model?

2👍

It doesn’t matter what your model says, only what the database says. Since syncdb does not modify the schema you will either have to apply the changes yourself, use a migration tool such as South, or drop the table altogether and resync.

Leave a comment