Hi, everybdoy
I just download the row level permission branch, and try as the wiki
said, add row_level_permissions to class Meta:
class Poll(models.Model):
question = models.CharField(maxlength=200)
pub_date = models.DateTimeField('date published')
class Admin:
pass
class Meta:
unique_together = (('question', 'pub_date'),)
#row_level_permissions = True
but when I use manage.py to syncdb, it said:
Error: Couldn't install apps, because there were errors in one or more
models:
autoest.polls: 'class Meta' got invalid attribute(s):
row_level_permissions
Would anybody kindly tell me what's wrong? Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---