Skip to content Skip to sidebar Skip to footer
Showing posts with the label Django South

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 clas… Read more Using Django South To Move From Concrete Inheritance To Abstract Inheritance

Python South Not Picking Up Changes Made In Add_to_class() Method

I've added a field to the main Django 'User' model, by inserting a User.add_to_class() … Read more Python South Not Picking Up Changes Made In Add_to_class() Method

Forward Class Declaration In Python

I have two classes in order: class A(models): ... class B(models): a = models.ManyToManyFi… Read more Forward Class Declaration In Python