Skip to content

Commit

Permalink
feat: django 4.2 migrations (#33344)
Browse files Browse the repository at this point in the history
  • Loading branch information
irtazaakram authored Sep 27, 2023
1 parent 64adc5e commit 60bc0b4
Showing 1 changed file with 35 additions and 0 deletions.
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'),
),
]

0 comments on commit 60bc0b4

Please sign in to comment.