Tagged Questions

5
votes
1answer
167 views

Handling PosgreSQL serial field type in South

I am using a legacy database which does a couple things that make sense in a db way, but not sure how to represent them in Django so that South and Django itself can deal with them. I have a Parts ...
3
votes
3answers
339 views

How to ensure database changes can be easily moved over DVCS using django

Overview I'm building a website in django. I need to allow people to begin to add flatpages, and set some settings in the admin. These changes should be definitive, since that information comes ...
1
vote
1answer
48 views

First steps with PostgreSQL + Django + South

Hi Stackoverflow people, In the past, I always developed my Django projects locally with sqlite as database platform. Now, I wanted to move to PostgreSQL to take advantage of GIS features, but the ...
0
votes
0answers
35 views

“Duplicate key value” error when running Django tests on auth

I have a Django site that's working fine. It has a small amount of data in the database which I want to use for testing. I've done dumpdata to generate a few .json fixtures. But, when I try to run a ...
0
votes
1answer
60 views

How to recover South from flushing db

I bulk loaded some data into my Postgresql db, only to realize all of it was a bit wrong. Keen to rectify this I flushed the db in order to reload the correct data. Data reloaded, I made a change to ...
0
votes
0answers
77 views

Django, south, postgres initial migration error

I am using south and django on a new site with a postgres database. I am attempting to do the initial migration but get the following error django.db.utils.DatabaseError: invalid input syntax for ...
0
votes
1answer
97 views

Django south migration error with unique field in postgresql database

Edit: I understand the reason why this happened. It was because of the existance of initial_data.json file. Appereantly, south wants to add those fixtures after migration but failing because of unique ...
0
votes
1answer
141 views

django south broke my db (can't drop constraint)

I wanted to add a table and a foreign key to that table. Initially I had: class VirtualMachine(models.Model): ... I then changed that to: class OperatingSystem(models.Model): name = ...