I have created a sample Django application with multiple models within it and populated data.
Now, I need to add a new column to one of the models?
Here are my concerns?
- What will happen if I do syncdb after adding a column to the model , will it just alter the table and add the new column?
- Or will it create a new table after deleting all the columns?
Is there any better way to tackle this issue?