On Monday, June 1, 2015 at 5:11:27 PM UTC+2, Andrew Godwin wrote: > > OK, so I've just gone ahead and done the initial work on this: > https://github.com/django/django/pull/4729 > > They shot not only in my head - http://stackoverflow.com/questions/35455706/equivalent-of-sqlall-in-django-1-9
Generating sql from migrations is useful for translating python migrations into SQL (the only one good way to handle database schema). But old `sql` command generates SQL directly from models, so an application must not have new migrations defined. The old-style commands are still required. I heard from my fellows that they are downgrading their projects from Django 1.9 to 1.8 due to missing sql commands. Not so funny. Marcin -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/8f21d96f-c309-46c7-8ec2-19af7189bc12%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
