28 lines
		
	
	
		
			841 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			841 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.0.3 on 2020-03-03 22:01
 | 
						|
 | 
						|
import django.db.models.deletion
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("passbook_crypto", "0001_initial"),
 | 
						|
        ("passbook_sources_saml", "0005_auto_20200220_1621"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(model_name="samlsource", name="signing_cert",),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="samlsource",
 | 
						|
            name="signing_kp",
 | 
						|
            field=models.ForeignKey(
 | 
						|
                default=None,
 | 
						|
                help_text="Certificate Key Pair of the IdP which Assertions are validated against.",
 | 
						|
                null=True,
 | 
						|
                on_delete=django.db.models.deletion.SET_NULL,
 | 
						|
                to="passbook_crypto.CertificateKeyPair",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |