diff options
author | Sean Smith <ssmith@iol.unh.edu> | 2021-03-24 17:22:54 -0400 |
---|---|---|
committer | Sean Smith <ssmith@iol.unh.edu> | 2021-03-29 16:21:47 -0400 |
commit | d007fa661e2faf77e70cb75c8d520941e907ebf7 (patch) | |
tree | 69b83bf903635768ac8614bfd799de998bb046ea /src/account/migrations/0008_auto_20210324_2106.py | |
parent | f6753ae2c5f54fb79375214590e565218b1bf0d7 (diff) |
Remove exposure of users on dashboard
Signed-off-by: Sean Smith <ssmith@iol.unh.edu>
Change-Id: I83b93d9247a7eafb54e4a5761d1423a504d86400
Diffstat (limited to 'src/account/migrations/0008_auto_20210324_2106.py')
-rw-r--r-- | src/account/migrations/0008_auto_20210324_2106.py | 18 |
1 files changed, 18 insertions, 0 deletions
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', + ), + ] |