idp cas: adapt migration to changes in the service model (#30959)

This commit is contained in:
Paul Marillonnet 2019-03-05 11:41:03 +01:00
parent 97c12bdbc9
commit 4a5311543f
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='service',
name='proxy',
field=models.ManyToManyField(help_text='services who can request proxy tickets for this service', related_name='_service_proxy_+', verbose_name='proxy', to='authentic2_idp_cas.Service', blank=True),
field=models.ManyToManyField(help_text='services who can request proxy tickets for this service', related_name='proxy_rel_+', verbose_name='proxy', to='authentic2_idp_cas.Service', blank=True),
),
]