aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/migrations/0011_userprofile_ipa_username.py
blob: 25cf6fb179a7373d92913156945a705a8da1c8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 2.2 on 2023-07-24 20:40

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('account', '0010_auto_20230608_1913'),
    ]

    operations = [
        migrations.AddField(
            model_name='userprofile',
            name='ipa_username',
            field=models.CharField(max_length=100, null=True),
        ),
    ]