i've made a modification in a App i created. run syncdb, it dont show changes made. what could be wrong? thanks in advance
from this: class CarMake(models.Model): name = models.CharField(max_length=30) class CarModel(models.Model): name = models.CharField(max_length=30) to this: class CarMake(models.Model): name = models.CharField(max_length=30) class CarModel(models.Model): name = models.ForeignKey("CarMake") --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---