Tagged Questions
5
votes
3answers
356 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 ...
4
votes
3answers
312 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.
3
votes
2answers
921 views
How is a rollback with South supposed to work?
Color me confused. Let's assume we've got a Django project with South migrations. Currently, production project version is A, version in development B. Now let's suppose version B is installed into ...
2
votes
0answers
84 views
Django, db update, south and sqliteman: a confirmation. Not really a question. Is it better?
I have seen that actually, after asking in stackoverflow.com, there might be a lot of equivalent questions.. But I got the box where to write already and my google searches
are not any better. (I was ...
2
votes
1answer
326 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 ...
1
vote
1answer
37 views
django: how to make table columns in the database have defaults OR get defaults programmatically
I have the following model:
class League(models.Model):
sport = models.ForeignKey(Sport)
name = models.CharField(max_length=100, unique=True)
show = models.BooleanField(default=False)
...
0
votes
2answers
43 views
django south - got messed everything up - how do I start over?
I like south a lot and it's cute and all but I again got everything messed up somehow. I've looked at all the questions and answers on this and I have only progressed so far as from "table already ...
0
votes
1answer
61 views
Django database introspection
I'd like to introspect the Django database(or table) at the runtime. So, for example- I'd like to do something like:
>>> a = django.db.introspect()
and now *a* should see like
a = {
...
0
votes
1answer
40 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
1answer
148 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 = ...
0
votes
2answers
700 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 .