I've been working on making django-mssql support the schema migration changes that will be part of Django 1.7 and have a pull request [1] that is mostly complete. Before I continue down my current path, I'd like to solicit some feedback to help ensure my changes will get merged.
I am currently able to pass all but 2 of the schema and migrations tests. The most challenging failure is due to MSSQL's limitations with regards to adding autoincrement to an existing column. The usual approach for doing this sort of migration requires swapping in a new table with the existing data, and fixing up all of the foreign keys. I may just document as "not supported, use a commercial product, such as RedGate's SQLcompare, or make the schema changes manually".
For reference to see how I plan to use the API changes from my pull request, see django-mssql's schema.py [2].
Regards,
Michael Manfre