diff --git a/common/djangoapps/third_party_auth/migrations/0009_merge_0007_auto_20220121_1956_0008_auto_20220324_1422.py b/common/djangoapps/third_party_auth/migrations/0009_merge_0007_auto_20220121_1956_0008_auto_20220324_1422.py new file mode 100644 index 000000000000..fe1909f8aec1 --- /dev/null +++ b/common/djangoapps/third_party_auth/migrations/0009_merge_0007_auto_20220121_1956_0008_auto_20220324_1422.py @@ -0,0 +1,14 @@ +# Generated by Django 3.2.16 on 2024-01-03 15:32 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('third_party_auth', '0007_auto_20220121_1956'), + ('third_party_auth', '0008_auto_20220324_1422'), + ] + + operations = [ + ] diff --git a/common/djangoapps/third_party_auth/migrations/0010_auto_20240103_1553.py b/common/djangoapps/third_party_auth/migrations/0010_auto_20240103_1553.py new file mode 100644 index 000000000000..00bd99e8e09d --- /dev/null +++ b/common/djangoapps/third_party_auth/migrations/0010_auto_20240103_1553.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.16 on 2024-01-03 15:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('third_party_auth', '0009_merge_0007_auto_20220121_1956_0008_auto_20220324_1422'), + ] + + operations = [ + migrations.AddField( + model_name='emailproviderconfig', + name='was_valid_at', + field=models.DateTimeField(blank=True, help_text='Timestamped field that indicates a user has successfully logged in using this configuration at least once.', null=True), + ), + migrations.AlterField( + model_name='emailproviderconfig', + name='name', + field=models.CharField(blank=True, help_text='Name of this provider (shown to users)', max_length=50), + ), + ] diff --git a/lms/djangoapps/bigcommerce_app/migrations/0010_auto_20240103_1553.py b/lms/djangoapps/bigcommerce_app/migrations/0010_auto_20240103_1553.py new file mode 100644 index 000000000000..f83e0baf4ea6 --- /dev/null +++ b/lms/djangoapps/bigcommerce_app/migrations/0010_auto_20240103_1553.py @@ -0,0 +1,21 @@ +# Generated by Django 3.2.16 on 2024-01-03 15:53 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('bigcommerce_app', '0009_auto_20220823_2237'), + ] + + operations = [ + migrations.RemoveField( + model_name='customer', + name='bc_country_code', + ), + migrations.RemoveField( + model_name='customer', + name='bc_postal_code', + ), + ]