Using django-south, is it possible to setup a table only to the last, most recent configuration without applying all the preceeding migrations?
We are interested in using a 3rd party tool (django-activity-stream) but are having difficulties running all the migrations, for somewhat unknown reasons (possibly MySQL issues regarding a particular field) - specifically migration 003, which raises an error
_mysql_exceptions.OperationalError: (1170, "BLOB/TEXT column 'object_id' used in key specification without a key length") " I strongly suspect that avoiding the migrations and going straight to the current schema will avoid this.
The ability to migrate backwards is not required, only the need to get us to the current schema right now, and I don't want to hack the package to deal with this. I can't seem to establish the commands, or whether this is even possible?
config:
south 0.7.6, django 1.3.x, mysql 5.5.x, django-activity-stream 0.4.4