-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add reference to new generic verification model in platform
- Loading branch information
1 parent
a2ff658
commit 1d23e7e
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
edx_name_affirmation/migrations/0009_add_verifiedname_platform_verification_id.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,27 @@ | ||
# Generated by Django 4.2.16 on 2024-09-19 12:34 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('edx_name_affirmation', '0008_alter_historicalverifiedname_options'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='historicalverifiedname', | ||
options={'get_latest_by': 'history_date', 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical verified name'}, | ||
), | ||
migrations.AddField( | ||
model_name='historicalverifiedname', | ||
name='platform_verification_attempt_id', | ||
field=models.PositiveIntegerField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='verifiedname', | ||
name='platform_verification_attempt_id', | ||
field=models.PositiveIntegerField(blank=True, null=True), | ||
), | ||
] |
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
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