I have a production model and I need to add the following field to it:
tag = models.ManyToManyField(Tags)
The following is not picking up the change:
python manage.py syncdb
And therefore, mymodel_tag table is not being created. I am using Postgres.
What are my options other than dropping the table and recreating it since the application is already on production use.