Skip to content

Commit

Permalink
chore: add migration from social_django
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsobanjaved authored and feanil committed Jul 23, 2024
1 parent 4744ea1 commit 670772b
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.13 on 2024-06-27 20:46

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('support', '0005_unique_course_id'),
]

operations = [
migrations.AlterField(
model_name='historicalusersocialauth',
name='extra_data',
field=models.JSONField(default=dict),
),
migrations.AlterField(
model_name='historicalusersocialauth',
name='id',
field=models.BigIntegerField(auto_created=True, blank=True, db_index=True, verbose_name='ID'),
),
]

0 comments on commit 670772b

Please sign in to comment.