summaryrefslogtreecommitdiff
path: root/www/py-django-south
AgeCommit message (Collapse)AuthorFilesLines
2014-04-12Changed 0.8.4:adam2-6/+6
Fixture loading issues fixed A regression in 0.8.3 meant that fixtures referring to models outside of the app they were in, and some other references to custom user models, were broken. This should now be fixed.
2014-02-09Changes 0.8.3:adam3-7/+13
* A couple of issues with Django 1.6 have been fixed (including bad error handling and a loaddata incompatability) * Migrations now import datetime from a special South module which provides the correct tz-aware or tz-naive version. * A couple of issues fixed, including double-indexing errors, and correct persistence of non-unique indexes across ALTERs. * The new localflavor fields are automatically accepted by the introspector.
2013-11-01Changes 0.8.2:adam2-6/+6
* An issue with SQLite and default values that caused some migrations to fail has been fixed. * South now recognises more Django MSSQL backends, and no longer fails to alter ForeignKeys that are in composite indexes. * A small issue with the app cache on Django 1.6 has been fixed. * The schemamigration and datamigration commands can now be properly inherited and their templates easily changed.
2013-08-09Changes 0.8.1:adam3-7/+10
This is the first bugfix release in the 0.8 series, to address a critical regression on older versions of Django.
2012-10-28Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-08-26Changes 0.7.6:adam3-11/+38
This is a minor new release of South, and the sixth bugfix release for the 0.7 series.
2011-01-12This is South, a Django application to provide migrations in a sane way.adam4-0/+353
By sane, we mean that the status of every migration is tracked individually, rather than just the number of the top migration reached; this means South can detect when you have an unapplied migration that's sitting in the middle of a whole load of applied ones, and will let you apply it straight off, or let you roll back to it, and apply from there forward.