From d007fa661e2faf77e70cb75c8d520941e907ebf7 Mon Sep 17 00:00:00 2001 From: Sean Smith Date: Wed, 24 Mar 2021 17:22:54 -0400 Subject: Remove exposure of users on dashboard Signed-off-by: Sean Smith Change-Id: I83b93d9247a7eafb54e4a5761d1423a504d86400 --- src/account/migrations/0008_auto_20210324_2106.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/account/migrations/0008_auto_20210324_2106.py (limited to 'src/account/migrations/0008_auto_20210324_2106.py') diff --git a/src/account/migrations/0008_auto_20210324_2106.py b/src/account/migrations/0008_auto_20210324_2106.py new file mode 100644 index 0000000..9ff513d --- /dev/null +++ b/src/account/migrations/0008_auto_20210324_2106.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2 on 2021-03-24 21:06 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0007_userprofile_pulic_user'), + ] + + operations = [ + migrations.RenameField( + model_name='userprofile', + old_name='pulic_user', + new_name='public_user', + ), + ] -- cgit 1.2.3-korg