Hello everyone,
As we all know that syncdb is the command used in django to create
tables and we also know that it does mot update tables once it is
created. But why does it happen?
Has anyone thought about it? For updating it we need to use south and
django migrations.
Actually I want to do improv
Hi Harjot,
syncdb has in fact been deprecated in 1.7 and replaced with migrate [1], so
what you propose has already been accomplished!
Andrew
[1]: https://docs.djangoproject.com/en/dev/releases/1.7/#schema-migrations
On Wed, Feb 5, 2014 at 6:35 PM, Harjot Mann wrote:
> Hello everyone,
> As we