19 lines
524 B
Python
19 lines
524 B
Python
|
|
# Generated by Django 5.0.2 on 2024-06-27 08:11
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('accounts', '0012_iamprincipalextendeddata'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='iamprincipalextendeddata',
|
||
|
|
name='pwd_changed_post_transfer',
|
||
|
|
field=models.BooleanField(default=False, help_text='Indicates if the user changed their password after the account was transferred.'),
|
||
|
|
),
|
||
|
|
]
|