0
votes
1answer
16 views

NoMigrations error in Django

I am building an app called 'competencies'. I made changes to models, migrated the app locally, and everything worked. This is my eighth migration on the app. I have deployed the app on heroku, so I ...
0
votes
0answers
16 views

Django South migration history causing an integrity error

My south migration history table is causing integrity errors every time I try to run a new migration. Here is the error: django.db.utils.IntegrityError: duplicate key value violates unique ...
0
votes
0answers
31 views

How to monkey patch south handled models from plugin?

I'm making a django site with plugins. Each plugin is a simple django app depending on a main one (or even other plugins). While dependency between applications/plugins are clear to me, it should be ...
0
votes
0answers
15 views

South migration fails/freezes

Here's a hair puller... I have been using the Django South package for some time and love it. Recently, however, migration for 3 of my 5 Django apps are failing/freezing during the process of ...
2
votes
1answer
42 views

Lose data with django-south schemamigration

I have a django model with around 500k entries in mysql database. I'd like to add another field to my model: site = models.ForeignKey(Site, verbose_name=_('Site'),null=True,blank=True). But I lose ...
0
votes
0answers
21 views

Django South migration cannot access custom model Meta attribute

I've got a Django app I've created which uses both Django Guardian to manage object-level permissions, and Django South to manage migrations. I've created a model mixin which allows models to define ...
0
votes
2answers
40 views

Sharing of various Django setup guides [closed]

This may be a little clean and green, however when I try to explain my setup to a rubber duck, many times I awake to find myself in a pile of my own hair and the duck still there, staring at me ...
0
votes
2answers
95 views

Django South schemamigration error AttributeError: 'Options' object has no attribute 'index_together'

I am working on a Django web app with south for db migration. I am quite new to south, and django as well. I tried using south with the official tutorials, however it failed with an exception: ...
0
votes
2answers
20 views

Recovering from a duplicate migration in Django South

Due to merging several feature branches into my project, I have the following migrations: 0001_initial.py 0002_auto__add_field_userprofile_telephone__add_field_userprofile_timezone.py 0003_auto.py ...
0
votes
0answers
48 views

Django South: schemamigration hanging for model changes

I am following the South tutorial. I am able to do the steps under "The First Migration" successfully. However, when I modify the schema and run schemamigration again: python manage.py ...
0
votes
1answer
27 views

How to manage properly south migrations for a reusable app using django-modeltranslation?

I have a reusable application. In this app, some models need to be localized and I am using the django-modeltranslation app for it. Using django-modeltranslation cause the south migrations to include ...
0
votes
0answers
27 views

DeserializationError while loading a datamigration for auth data

I want to auto populate my_app with some auth data (permission, user and group). This app was recently converted to south and only have a initial migration. For generating these fixtures, I did a ...
0
votes
1answer
34 views

Django South editing field names in model with --auto --update

In the South Docs,when changing the name of a field it wants you to use ./manage.py schemamigration southtut --auto --update. When I use it I get the following./manage.py: error: no such option: ...
2
votes
1answer
35 views

South needs DROP privileges, that seems unsafe, is there a way of working to avoid this

I introduced South in a project. I got into trouble, because of the fact that South needs DROP privileges. The error I got: (1142, "DROP command denied to user '?????' for table 'ROLLBACK_TEST'") ...
0
votes
1answer
36 views

Sync django with south

Have installed south to my old django project. Have run. ¤ syncdb ¤ convert_to_south myappName But the did not sync all. Runned: ¤ Migrate myappNAme Did not sync 100 %, still have one column ...
1
vote
2answers
77 views

No Such Column After South Migration

I had the same issue as the user in this question but the answer unfortunately did not resolve anything. A few comments about what happened when I followed the given directions: When I tried the ...
0
votes
0answers
23 views

Django: South did not pick up a manytomanyfield

I'm in the middle of a process of delivering my changes from a dev to prod. everything works well on dev. I'm using Django 1.4 the problem I'm facing that South did not pick up and did not create a ...
1
vote
1answer
22 views

Moving data from one django model to another (django+south) on a living app

I'm trying to move some fields from one django model to a new one. Let's assume I've got a book model: class Book(models.Model): title = models.CharField(max_length=128) author = ...
0
votes
0answers
22 views

What's the right way to do a Django/South/PostgreSQL migration from calculated-as-needed summary values to maintained-in-database summary values?

My Django app has a User model, those Users have many Transactions. Some of my views display a summary (summation) of all transaction amounts, let's call it the 'total'. So far, this has been tallied ...
0
votes
1answer
24 views

alter_column migrations are failing, do I care?

I am changing from a profile model setup, to extending the User model. I am trying to get my South migrations set up according to this guide. I have a few other models that reference the User model, ...
1
vote
1answer
28 views

South ignores ManyToManyField in my model

My model: class Article(models.Model): user = models.ForeignKey(User) categories = models.ManyToManyField(AuditGroup) topic = models.ManyToManyField(Topic) title = ...
1
vote
1answer
44 views

Sync Fabric with South

When i try execute a schemamigration with south with the following code: # coding=utf-8 from fabric.api import env, hosts, local, run, cd def updatebd(): local('cd ...
0
votes
1answer
42 views

Cannot connect to Postgresql database

I'm trying to add a column to a table in my Django app with South but getting the following error upon running python manage.py migrate <app name>: conn = _connect(dsn, ...
1
vote
1answer
23 views

How to get Django South to migrate a field with changed max_length?

I have a CharField in a model for which I want to increase the max_length attribute. South isn't noticing this change, saying there's nothing to migrate. How do I get it to migrate this?
0
votes
1answer
35 views

Django South - Create Not Null ForeignKey

I have a Model class Mystery(models.Model): first = models.CharField(max_length=256) second = models.CharField(max_length=256) third = models.CharField(max_length=256) player = ...
0
votes
0answers
30 views

How to use UUIDField in a way compatible with South?

Normally, I can resolve DB migrations that crop up, but this one is baffling me. I have a new model that I've created, with a UUIDField (from django-extensions) as the primary key. # BaseModelNamed ...
0
votes
1answer
17 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 ...
0
votes
1answer
20 views

OneToOne Fields on users causing some ID problems

I have a bit of a problem using django-registration and signals. The basic setup is that I have a django 1.4.3 setup, with django-south and django-registration (and the db is SQLite for what it's ...
-1
votes
0answers
54 views

How do to fix a django.db.utils.DatabaseError?

I am using postgres for my django project,i have installed South for migrations, i go ahead to include it in INSTALLED_APPS. But when i run a syncdb i get the error, django.db.utils.DatabaseError: ...
0
votes
4answers
46 views

How can i get my south migrations to work?

I am having trouble having south to work with my django project, i have followed the south documentation on converting apps to south and also looked here (How come my South migrations doesn't work ...
1
vote
0answers
33 views

South tries to migrate django.contrib.auth

On django 1.5, south keeps trying to migrate django.contrib.auth, which obviously doesn't work. There are no migrations folders in my project, and the database is fresh - there are no rows anywhere. ...
0
votes
2answers
31 views

How to make migrations with django-south

The application I'm developing is starting to need migration for the database schemas. I've thought about django-south, but since I have no experience with that kind of stuff I'm a bit lost, this is ...
1
vote
1answer
31 views

Schema Migrations and Default Values

I'm using South to manage my databases. It seems like every time I change something minor in the way my models are created, I end up having to do a bunch of gymnastics for the migrations. For ...
-1
votes
1answer
40 views

Django south migration

I have added to my model the following line room = models.ForeignKey(Room) after that I tried to use south migrate: ./manage.py migrate myapp but I have received the following error: Running ...
1
vote
1answer
48 views

Can I generate schema migrations from South that work on different databases [sqlite and postgresql]?

I use sqlite3 on my dev server and when I change the schema, I'd like to be able to generate migrations on development that I can use on production, which uses postgresql. One option would be to ...
1
vote
1answer
46 views

Adding a non-null ForeignKey field in Django+South

I use Django and South for my database. Now I want to add a new Model and a field in an existing model, referencing the new model. For example: class NewModel(models.Model): # a new model # ...
0
votes
0answers
30 views

How can I go to an older version of schema?

I have a Postgre SQL database in Heroku. I've had some problems. I needed to delete some local migration files and create brand new schema migration files (which worked) that had all migrations ...
1
vote
1answer
69 views

How to create a migration after adding an hstore field? (django-hstore vs. South)

I have an existing model in the database. I want to enhance it with an hstore field. I installed hstore Postgres extension, django-hstore app, changed the appropriate settings in the django project: ...
0
votes
1answer
52 views

Using Django 1.4, How can I save TimeStampedModel objects without automatically updating the modified field?

I am in the process of running a Datamigration using Django and South. I have already added a new field to my model with a Schemamigration, and now I am in the process of populating the field for all ...
1
vote
3answers
101 views

Custom user models and South

I'm trying to use a custom user model in the most basic way, extending AbstractUser as described at Extending Django’s default User. But, I'm not sure how to properly make this work with South. I'm ...
0
votes
1answer
12 views

Django South Migration introspect_test

I'm trying to do a simple migrate and I'm getting the error django.db.utils.DatabaseError: (1050, "Table 'introspect_test' already exists"). When looking at the actual MySQL database, I see no ...
0
votes
1answer
117 views

Django 1.5 south installation error

I have install south using setup.py install and then i included 'south', in INSTALLED APP directory of my project is: myproject/ apps/ static/ template/ manage.py and south ...
0
votes
0answers
40 views

Django + South KeyError: 'ENGINE

I'm using Django 1.4 with latest south + 'ENGINE': 'django.db.backends.mysql' I added south to installed_apps syncdb returns this error: ment/commands/__init__.py", line 13, in <module> from ...
-2
votes
1answer
31 views

How to deploy django south after creating a Django project [closed]

I've made a Django project. But now i want to add South to this project. Do I have to start my project all over again ?
0
votes
1answer
50 views

django south on multiple databases

I am using two enviorments for my django project, dev and production. mostly I am working on dev, when I change fields in my models I am using south to migrate to the new models. What I dont ...
0
votes
1answer
35 views

South migrations are messed up

South Migrations are messed up. What can I do to reset migrations for my django app without breaking anything?
1
vote
1answer
42 views

How to deal with old pip requirement in Django South migrations?

I have an app which is managed with South for quite a while. At one point of the development, I added a custom field to a model that had a pip requirement (sorl-thumbnail), but I removed this ...
1
vote
5answers
255 views

Error setting up South in a new Django project

I'm working on a new django project and following this tutorial. I'm at the step "Using South for Database Migrations", attempting to run python manage.py syncdb, and I'm getting the following error: ...
0
votes
1answer
66 views

Python AttributeError - 'Category' object has no attribute 'product_set'

My show_category view for my ecommerce catalog was fully functional yesterday. Navigating to domain.com/category/necklaces, for example, would call the show_category view and display all my products ...
0
votes
1answer
49 views

How do I fake certain south migration in django tests(in a custom test runner)?

My project uses a third-party app, that doesn't use south for migrations. We wrote a data migration, that depends on that 3d-party app and as a result our tests are now failing. So I would like to ...

1 2 3 4 5 11