-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: django 4.2 migrations (#33344)
- Loading branch information
1 parent
64adc5e
commit 60bc0b4
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
common/djangoapps/third_party_auth/migrations/0012_alter_ltiproviderconfig_site_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Generated by Django 4.2.5 on 2023-09-25 09:45 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('sites', '0002_alter_domain_unique'), | ||
('third_party_auth', '0011_applemigrationuseridinfo'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='ltiproviderconfig', | ||
name='site', | ||
field=models.ForeignKey(default=1, help_text='The Site that this provider configuration belongs to.', on_delete=django.db.models.deletion.CASCADE, related_name='%(class)ss', to='sites.site'), | ||
), | ||
migrations.AlterField( | ||
model_name='oauth2providerconfig', | ||
name='site', | ||
field=models.ForeignKey(default=1, help_text='The Site that this provider configuration belongs to.', on_delete=django.db.models.deletion.CASCADE, related_name='%(class)ss', to='sites.site'), | ||
), | ||
migrations.AlterField( | ||
model_name='samlconfiguration', | ||
name='site', | ||
field=models.ForeignKey(default=1, help_text='The Site that this SAML configuration belongs to.', on_delete=django.db.models.deletion.CASCADE, related_name='%(class)ss', to='sites.site'), | ||
), | ||
migrations.AlterField( | ||
model_name='samlproviderconfig', | ||
name='site', | ||
field=models.ForeignKey(default=1, help_text='The Site that this provider configuration belongs to.', on_delete=django.db.models.deletion.CASCADE, related_name='%(class)ss', to='sites.site'), | ||
), | ||
] |