aboutsummaryrefslogtreecommitdiffstats
path: root/src/account/migrations
diff options
context:
space:
mode:
authorJustin Choquette <jchoquette@iol.unh.edu>2023-08-07 14:10:19 -0400
committerJustin Choquette <jchoquette@iol.unh.edu>2023-08-07 14:16:04 -0400
commita6168306c08e8d5b207b9acc48869180d194ff01 (patch)
tree51ffcafac4ae0b5fd4da363d9bf839e8ad3fc286 /src/account/migrations
parenta09db9f287a02873c0226759f8ea444bb304cd59 (diff)
User subsystem
Change-Id: Ibef4ede9b2d6a3ea465f79a9b5cbcc821afbccae Signed-off-by: Justin Choquette <jchoquette@iol.unh.edu>
Diffstat (limited to 'src/account/migrations')
-rw-r--r--src/account/migrations/0011_userprofile_ipa_username.py18
-rw-r--r--src/account/migrations/0012_auto_20230725_1749.py18
-rw-r--r--src/account/migrations/0013_auto_20230727_1903.py29
3 files changed, 65 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),
+ ),
+ ]
diff --git a/src/account/migrations/0012_auto_20230725_1749.py b/src/account/migrations/0012_auto_20230725_1749.py
new file mode 100644
index 0000000..3f4d142
--- /dev/null
+++ b/src/account/migrations/0012_auto_20230725_1749.py
@@ -0,0 +1,18 @@
+# Generated by Django 2.2 on 2023-07-25 17:49
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('account', '0011_userprofile_ipa_username'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='userprofile',
+ name='ipa_username',
+ field=models.CharField(blank=True, max_length=100, null=True),
+ ),
+ ]
diff --git a/src/account/migrations/0013_auto_20230727_1903.py b/src/account/migrations/0013_auto_20230727_1903.py
new file mode 100644
index 0000000..9e1d222
--- /dev/null
+++ b/src/account/migrations/0013_auto_20230727_1903.py
@@ -0,0 +1,29 @@
+# Generated by Django 2.2 on 2023-07-27 19:03
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('account', '0012_auto_20230725_1749'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='userprofile',
+ name='company',
+ ),
+ migrations.RemoveField(
+ model_name='userprofile',
+ name='jira_url',
+ ),
+ migrations.RemoveField(
+ model_name='userprofile',
+ name='pgp_public_key',
+ ),
+ migrations.RemoveField(
+ model_name='userprofile',
+ name='ssh_public_key',
+ ),
+ ]