forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
...third_party_auth/migrations/0009_merge_0007_auto_20220121_1956_0008_auto_20220324_1422.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,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 = [ | ||
] |
23 changes: 23 additions & 0 deletions
23
common/djangoapps/third_party_auth/migrations/0010_auto_20240103_1553.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,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), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
lms/djangoapps/bigcommerce_app/migrations/0010_auto_20240103_1553.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,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', | ||
), | ||
] |