Tagged Questions
24
votes
2answers
2k views
How do I migrate a model out of one django app and into a new one?
I have a django app with four models in it. I realize now that one of these models should be in a separate app. I do have south installed for migrations, but I don't think this is something it can ...
14
votes
2answers
2k views
Backwards migration with Django South
Ok, so this seems like a really silly thing to ask, and I'm sure I'm missing something somewhere.
How do you perform a backwards migration using South on Django?
So I've tweaked my models, created a ...
12
votes
4answers
3k views
Using south to refactor a Django model with inheritence
I was wondering if the following migration is possible with Django south and still retain data.
Before:
I currently have two apps, one called tv, one called movies, each with a VideoFile model ...
11
votes
4answers
3k views
How come my South migrations doesn't work for Django?
First, I create my database.
create database mydb;
I add "south" to installed Apps. Then, I go to this tutorial: http://south.aeracode.org/docs/tutorial/part1.html
The tutorial tells me to do ...
8
votes
2answers
693 views
Renaming an app with Django and South
I am renaming an application to a more suitable name. In doing so, I want to ensure that South properly migrates the database (renames database tables and changes references in django_content_type or ...
5
votes
3answers
320 views
Django - South - Is There a way to view the SQL it runs?
Here's what I want to do.
Develop a Django project on a development server with a development database. Run the south migrations as necessary when I change the model.
Save the SQL from each ...
5
votes
1answer
443 views
Django south migration - Adding FULLTEXT indexes
I need to add a FULLTEXT index to one of my Django model's fields and understand that there is no built in functionality to do this and that such an index must be added manually in mysql (our back end ...
5
votes
1answer
330 views
Adding South to Django project, development & production
Adding South to an existing Django project. I have it installed on both the development machine and the "production" server.
I've done the following on the development machine, then: added South app ...
4
votes
1answer
496 views
Django-South introspection rule doesn't work
I'm using Django 1.2.3 and South 0.7.3.
I am trying to convert my app (named core) to use Django-South. I have a custom model/field that I'm using, named ImageWithThumbsField. It's basically just the ...
4
votes
1answer
735 views
django and south migration with conflicts (0007_two … and 0007_one) how to solve?
Hi I want to use south in my django project as migration tool, but I have problem with using south in multiuser scenario:
two guys working in same time and create on diffrent machines two migrations ...
3
votes
2answers
149 views
Using Django South to move from concrete inheritance to abstract inheritance
I have an existing Django project that has several models using concrete inheritance of a base class. After closer consideration, and after reading about what people like Jacob Kaplan-Moss have to say ...
3
votes
3answers
720 views
How do I access auth User's User.objects.create_user(…) in a south migration?
Instead of using django's auth module I've used my own and already regret it a lot.
In an effort to rectify the situation, I'm trying to migrate the data from my User model to ...
1
vote
1answer
42 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 ...
1
vote
1answer
29 views
Migrate Django model to unique_together constraint
I have a model with three fields
class MyModel(models.Model):
a = models.ForeignKey(A)
b = models.ForeignKey(B)
c = models.ForeignKey(C)
I want to enforce a unique constraint ...
1
vote
1answer
56 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 = ...
1
vote
2answers
81 views
South won't generate or apply migrations for existing app, with changes to migrate
I'm using South to generate and apply migrations, rather than managing that myself. Unfortunately, South is refusing to actually do anything. Transcript below:
...
1
vote
1answer
54 views
Running South migrations for all apps
I've just begun using South and am still in the process of figuring it out. Let's say I have the initial migration script of a model. Then i go add a column to the model and create a migration script ...
1
vote
1answer
206 views
Problems with South/Django: not recognizing the Django App
I've got a Django project on my machine and when I try to use South to migrate the data schema, I get several odd errors. Example:
$ python manage.py convert_to_south thisLocator
...
0
votes
1answer
59 views
Error: One or more models did not validate: Django+South, shemamigration generic --auto [Solved] (typo)
Im trying to run the shemamigration generic --auto
generic.articletocategory: 'article' has a relation with model generic.Article, which has either not been installed or is abstract.
...
0
votes
1answer
13 views
How to migrate models from a models package hierarchy and not from models.py with SOUTH in Django?
Hy!
I have my models in a hierarchy below "models" package:
models
|-a.py
|-b.py
instead of having all my models into the models.py
But when I run the migration command for South it doesn't ...
0
votes
0answers
26 views
Migrate data from a ManyToMany model in Django
I am working on refactoring some models.
Currently for this job - I am working with Django 1.3 and MySQL (InnoDB)
Currently the client used two models, CaseStudy (contains all your normal info) and ...
0
votes
1answer
91 views
No migration fixtures found but table not updating with Django and South
Trying to update my app so it has the admin page so I run syncdb:
tyre77$ python manage.py syncdb
Syncing...
Creating tables ...
Installing custom SQL ...
Installing indexes ...
No fixtures found.
...
0
votes
1answer
79 views
Django South: Migrating FK from another table
I was doing some system and my table design was like this:
Table A:
- ID
- ForeignKey(C)
Table B:
- ID
- ForeignKey(A)
Table C:
- ID
Due to some requirement changes, I need to move ...
0
votes
1answer
201 views
syncdb not happening using south for migration
Synced:
> django.contrib.auth
> django.contrib.contenttypes
> django.contrib.sessions
> django.contrib.sites
> django.contrib.messages
> django.contrib.staticfiles
> ...
0
votes
1answer
86 views
How do I use Django South when my app is inside another directory?
So by default, Django creates apps inside the root project dir. But I moved it inside "apps".
py manage.py schemamigration ./apps/chat --initial
This doesn't work.
Instead of "chat", I put "chat" ...
0
votes
2answers
221 views
How can I use South's DataMigration to change the storage backend of Django model ImageField instance?
I'm trying to migrate some models ImageFields to using the S3BotoStorage storage backend from django-storages. As part of this process I've changed my Model's ImageField declaration to include the ...
0
votes
2answers
644 views
South migration error: NoMigrations exception for django.contrib.auth
I have been using South on my project for a while, but I recently did a huge amount of development and changed development machine and I think something messed up in the process. The project works ...
-1
votes
2answers
68 views
Is there a way to use south for migration , and not lose data?
I used South as the migration tool, but i dint know it will format all my db !
I dont want to lose my db .