Tagged Questions
7
votes
2answers
328 views
Django - Change a ForeignKey relation to OneToOne
I am using South with my Django app. I have two models that I am changing from having a ForeignKey relation to having a OneToOneField relation. When I ran this migration on my dev database, it ran ...
7
votes
1answer
920 views
reverse engineer mysql database to create django app
I basically want to take an existing mysql database structure created and used by a php app (codeigniter framework) and reverse engineer it to a django app. is there some tool to do this? south ...
5
votes
1answer
451 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 ...
4
votes
3answers
307 views
Django migrations--is it possible to use South in the middle of the project?
I already started a project, and the models are all synced and everything.
1
vote
3answers
168 views
Schema migration with south (django) and MySQL
I was just going through a tutorial on django, and I followed every step, but still I get this error every time I try to migrate:
The initial migration works, but trying to migrate it, I get this:
...
1
vote
1answer
102 views
Django South migration fails
I am trying to map some data onto a staging server and have run into an issue.
When running my migrations I get the following error.
django.db.utils.DatabaseError: column "item_name_id" cannot be ...
0
votes
1answer
37 views
south with mysql, yes or no?
Following the south tutorial, The basics, i'm already having problems! This is due to Mysql not supporting migrations i think, but neither MYSQL documentation or South documentation or previous stack ...
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
90 views
south & mysql problem
can somebody help me out on this:
I have installed recently south to use it updating changes in my django-based project on the production server (Appache 2.0, MySql 5.0, python 2.5, Mysqldb for ...
0
votes
1answer
152 views
How can I have a unique_together constraint involving a ForeignKey field in MySQL?
MySQL seems to be sort of broken with regards to multi-column unique constraints with foreign keys. Here's the smallest example I can come up with to show this (using MySQL/InnoDB):
models.py
from ...
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
1answer
434 views
Django South - db.alter function removing null=true blank=true fails with mysql
Having trouble with the db.alter command when changing a date field from null=True and blank=True to required by removing these two values.
When the below line is commented out, the migration runs ...
0
votes
2answers
77 views
How do you maintain user data when updating a Django site?
I have a live Django site that already has registered users. I am trying to update the site with a new version that is different from the original site -similar idea but different models.
How can I ...