What Wrong With My Models.py
I am using Django 1.4 with PostgreSQL 9.1.4 what wrong with my models.py class UserProfile(models.Model):     ROLES_TYPE = (         ('Employee', 'Employee'),         ('Employor',
Solution 1:
This is a problem generated by your database not django itself. Try to recreate your database schema (you can just remove all related columns and execute ./manage.py syncdb.
Post a Comment for "What Wrong With My Models.py"