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/0007_userprofile_pulic_user.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/account/migrations/0007_userprofile_pulic_user.py (limited to 'src/account/migrations/0007_userprofile_pulic_user.py') diff --git a/src/account/migrations/0007_userprofile_pulic_user.py b/src/account/migrations/0007_userprofile_pulic_user.py new file mode 100644 index 0000000..6a229e6 --- /dev/null +++ b/src/account/migrations/0007_userprofile_pulic_user.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2 on 2021-03-24 21:06 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0006_auto_20201109_1947'), + ] + + operations = [ + migrations.AddField( + model_name='userprofile', + name='pulic_user', + field=models.BooleanField(default=False), + ), + ] -- cgit 1.2.3-korg