Skip to content Skip to sidebar Skip to footer
Showing posts with the label Django South

Django South: How Can I Access Models In Sub-packages In Migrations

Since our app has many models, we place them in sub-packages of the models packages, i.e. the Chedd… Read more Django South: How Can I Access Models In Sub-packages In Migrations

Django-south Not Detecting Db Changes

I have updated our project from svn and I have new migration files. When I use : ./work/manage.py s… Read more Django-south Not Detecting Db Changes

Does Core Django Supports Migration Without Django-south Or Similar App?

Does Django consists of a migration concept without south app? If not why didn't they include i… Read more Does Core Django Supports Migration Without Django-south Or Similar App?

Can The South (for Django) Insert Rows Of Data Into Database?

I want to create a table, and then a list of data that should be inserted into that table. Does Sou… Read more Can The South (for Django) Insert Rows Of Data Into Database?

Django & South: Adding New Field But DatabaseError Occurs "table Already Exists"

In trying to add a new field to a preexisting Model/table, I get a DatabaseError with 'table al… Read more Django & South: Adding New Field But DatabaseError Occurs "table Already Exists"