aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/migrations/0011_userprofile_ipa_username.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/account/migrations/0011_userprofile_ipa_username.py')
-rw-r--r--src/account/migrations/0011_userprofile_ipa_username.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/account/migrations/0011_userprofile_ipa_username.py b/src/account/migrations/0011_userprofile_ipa_username.py
new file mode 100644
index 0000000..25cf6fb
--- /dev/null
+++ b/src/account/migrations/0011_userprofile_ipa_username.py
@@ -0,0 +1,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),
+ ),
+ ]