From ea0b7019cf1c2f6f2280109a5855120b253e2e6e Mon Sep 17 00:00:00 2001 From: Diana Huang Date: Wed, 1 Apr 2020 16:09:44 -0400 Subject: [PATCH] Add a migration that was generated for Django 2. --- .../migrations/0026_auto_20200401_1932.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 common/djangoapps/third_party_auth/migrations/0026_auto_20200401_1932.py diff --git a/common/djangoapps/third_party_auth/migrations/0026_auto_20200401_1932.py b/common/djangoapps/third_party_auth/migrations/0026_auto_20200401_1932.py new file mode 100644 index 0000000000..fc57476155 --- /dev/null +++ b/common/djangoapps/third_party_auth/migrations/0026_auto_20200401_1932.py @@ -0,0 +1,20 @@ +# Generated by Django 2.0.13 on 2020-04-01 19:32 + +from django.db import migrations, models +import django.db.models.deletion +import third_party_auth.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('third_party_auth', '0025_auto_20200303_1448'), + ] + + operations = [ + migrations.AlterField( + model_name='samlproviderconfig', + name='saml_configuration', + field=models.ForeignKey(blank=True, limit_choices_to=third_party_auth.models.active_saml_configurations_filter, null=True, on_delete=django.db.models.deletion.SET_NULL, to='third_party_auth.SAMLConfiguration'), + ), + ]