Questions tagged [django-south]

Tool to provide consistent, easy-to-use and database-agnostic database migrations for Django applications. Deprecated since Django 1.7.

South was a tool to provide consistent, easy-to-use and database-agnostic s for applications.

Since Django 1.7, the features previously provided by South are included directly in Django.

1022 questions
-1
votes
1 answer

can't sync my data to database using South

every time I 'python manage.py migrate myapp ' , errors happened , it said that the table is already exists... Any help ? please...
Weizhi
  • 174
  • 4
  • 22
-1
votes
0 answers

django ORM Foreign Key Data in Database not populated to the Model

In Django I have three models: class Player(models.Model) team = models.ForeignKey('Team') class Team(models.Model) name = models.CharField(max_length=20) coach = models.ForeignKey('Coach') class Coach(models.Model) name =…
MrOodles
  • 1,856
  • 21
  • 21
1 2 3
68
69