I am using custom permissions in my Django models like this:

class T21Turma(models.Model):
    class Meta:
        permissions = (("can_view_boletim", "Can view boletim"),
                       ("can_view_mensalidades", "Can view mensalidades"),)

The problem is that when I add a permission to the list it doesn't get added to the auth_permission table when I run syncdb. What am I doing wrong. If it makes any difference I am using south for database migrations.

link|improve this question

75% accept rate
feedback

3 Answers

up vote 17 down vote accepted

South does not track django.contrib.auth permissions. See ticket #211 for more information.

One of the comments on the ticket suggests that using the --all option on syncdb may solve the problem.

link|improve this answer
Sounds like exactly my problem except that I can't get the --all switch to work with syncdb nor do I find the switch documented anywhere. – user27478 Nov 16 '09 at 20:07
1  
This worked after I upgraded to south 0.6.2 (I was running 0.5) previously. – user27478 Nov 18 '09 at 20:23
feedback

If you want "manage.py migrate" to do everything (without calling syncdb --all). You need to create new permissions with a migration:

user@host> manage.py datamigration myapp add_perm_foo

Edit the created file:

class Migration(DataMigration):

    def forwards(self, orm):
        "Write your forwards methods here."
        ct, created = orm['contenttypes.ContentType'].objects.get_or_create(
            model='mymodel', app_label='myapp') # model must be lowercase!
        perm, created = orm['auth.permission'].objects.get_or_create(
            content_type=ct, codename='mymodel_foo', defaults=dict(name=u'Verbose Name'))
link|improve this answer
thank you, this approach seems more consistent – Ivan Virabyan Aug 2 '11 at 9:57
1  
there is no need for last three lines, defaults keyword argument of get_or_create can be used instead link – Ivan Virabyan Aug 2 '11 at 10:15
2  
If you're using this method you need to add the options --freeze=contenttypes --freeze=auth to the datamigration command. Otherwise you'll get the error @balmaster mentions below. E.g: manage.py datamigration myapp add_perm_foo --freeze=contenttypes --freeze=auth – calebbrown Dec 20 '11 at 7:03
feedback

When i runnning migration with following code

ct, created = orm['contenttypes.ContentType'].objects.get_or_create(model='mymodel',     app_label='myapp') # model must bei lowercase!
perm, created = orm['auth.permission'].objects.get_or_create(content_type=ct, codename='mymodel_foo')

I getting folloving error

File "C:\Python26\lib\site-packages\south-0.7.3-py2.6.egg\south\orm.py", line 170, in  __getitem__
raise KeyError("The model '%s' from the app '%s' is not available in this migration." % (model, app))
KeyError: "The model 'contenttype' from the app 'contenttypes' is not available in this migration."

To prevent this error, i modified the code

from django.contrib.contenttypes.models import ContentType
from django.contrib.auth.models import Permission

class Migration(DataMigration):

    def forwards(self, orm):
        "Write your forwards methods here."
        ct = ContentType.objects.get(model='mymodel', app_label='myapp') 
        perm, created = Permission.objects.get_or_create(content_type=ct, codename='mymodel_foo')
        if created:
            perm.name=u'my permission description'
            perm.save()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.