0
votes
1answer
24 views

django-sitetree how to migrate data to production server

I'm using south to migrate schemes to production. Also I'm using the django-sitetree module to show the menu in my site. There is no problem with schema migration by using commands: ./manage.py ...
1
vote
1answer
73 views

using south datamigration to change value in old records

Previously I had a django model like this class Review(models.Model): reviewdate=models.DateField(default=date.today) description=models.TextField() ...
0
votes
2answers
110 views

Is it a good idea to keep database migration inside VCS?

The conventional wisdom seems to be that database migrations should be kept inside the VCS - that way there is a record of all the changes the database went through. But... What is the use of having ...
1
vote
2answers
110 views

How do I mock a custom field that is deleted so that south migrations run?

I have removed an app that contained a couple of custom fields from my project. Now when I try to run my migrations I get ImportError, naturally. These fields were very basic customizations like ...
0
votes
1answer
741 views

How do I successfully integrate a second database with Django South?

One of our clients needs to add some geolocation data to their site. Since they already have a database setup without GIS extensions, I decided to create a new database (with the GIS extensions), ...
0
votes
1answer
899 views

django+south: migrate command doesn't create table in the database

I have a strnage problem. My django project has myapp module/application. My project uses south to do the schema migrations. On localhost i have run ./manage.py schemamigration myapp --initial, then i ...
2
votes
0answers
450 views

“no such column” error when running a data migration with django-south

I've imported some metrics events into a Django project. Next, I grouped the Events into Sessions, defined as a series of contiguous events within a given time window. My models.py looks like this: ...
0
votes
1answer
401 views

Migrating data with south to a new model not working

I have an abstract model that I'm converting to a concrete model. I'm successfully using south to change the schema, but I'm unable to use the datamigration. My initial state is: class ...
4
votes
1answer
891 views

Migrate data from one Model to another with Django South

I currently have a structure that needs to be rewritten in order to cope with Django-CMS Currently the setup is as follows class Video(models.Model): #embed_code_or_url = ...
3
votes
2answers
354 views

Programmatically check whether there are django south migrations that need to be deployed

My deployment strategy looks like this (using Fabric): create a new virtualenv deploy new code in new virtualenv show a maintenance page copy the current db to new db migrate new db point new code ...
5
votes
2answers
1k views

In Django/South HOWTO create an instance of a model from a different app during DataMigration

I need to perform a datamigration of a model Answer in app Question. In that script there is a dependency such that I need to create an instance of a model Chapter which is in the app Journal. So, I ...
1
vote
1answer
213 views

How to automate south migrations in an install script

I have a Django project using South that includes an install script. What I'd like to do is have a couple of lines of code in that install script that take care of installing and syncing my database ...
2
votes
2answers
357 views

South data migration from parent class to subclass clobbers parent data

I have a legacy Django model which is a little to specific in its implementation for my tastes. I want to generate more specific subclasses of this model to handle differing scenarios, but want to ...
1
vote
1answer
915 views

South data migration 'instance' error when using south freeze orm

I have a south datamigration that is trying to create new objects based on data found in other models. When trying to create a new object for the given 'destination' model I keep getting: Cannot ...
4
votes
2answers
1k views

South doesn't create default permissions on new models in time for latter migrations to use them

I'm not 100% sure I'm doing this right, but I think I've found an issue where auth.Permission objects aren't being created soon enough for migrations to use them when you initialize a DB from scratch. ...
3
votes
1answer
91 views

Migrating Built-in Django Models When Upgrading

We're using an older version of Django (1.1.1) and are preparing to upgrade to the latest version (currently 1.2) soon. None of my searches have brought up the topic of migrating database tables ...
5
votes
1answer
662 views

South django table already exists

I'm experiencing the same problem as with: django - "manage.py test" fails "table already exists" The schemamigration / migration worked fine (although did have some problems that required me to ...
9
votes
2answers
676 views

How to unit test a Django South “datamigration”

I created a data migration using south, that takes a versions table and converts it from: major: 1, minor: 2, micro: 3, release: a into a simpler: name: 1.2.3.a Now I want to test this ...
2
votes
2answers
474 views

Version controlled South migrations in virtualenv

I have a Django site placed in folder site/. It's under version control. I use South for schema and data migrations for my applications. Site-specific applications are under folder site/ so they ...
9
votes
4answers
2k views

What is the best approach to change primary keys in an existing Django app?

I have an application which is in BETA mode. The model of this app has some classes with an explicit primary_key. As a consequence Django use the fields and doesn't create an id automatically. class ...
3
votes
1answer
687 views

How do I migrate data from one model to another using South in Django?

I created a Django app that had its own internal voting system and a model called Vote to track it. I want to refactor the voting system into its own app so I can reuse it. However, the original app ...