Hello,

i've got an abstract model which has no fields and only defines permissions. 
The permission isn't added to the auth_permission table on syncdb nor is the 
content_type added to django_content_type. The app is in INSTALLED_APPS.

class Base(models.Model):
    class Meta:
        abstract = True
        permissions = (
            ("can_do_foo", _(u"Can do foo")),
        )

Is this a bug or am i missing something? I'm using django-1.2.1.

Best Regards,
Dirk Eschler

-- 
Dirk Eschler <esch...@gmail.com>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.

Reply via email to