diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2021-04-06 17:38:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-04-06 17:38:49 +0000 |
commit | 241ff304980c8bf542fdd1a2a47f73accf912ee1 (patch) | |
tree | 0192336d1a72df98ca5056b190f6d29e683079a0 /src/account/migrations | |
parent | f1456220fcc098cb0f5e9fc60124680ff8aba6af (diff) | |
parent | d007fa661e2faf77e70cb75c8d520941e907ebf7 (diff) |
Merge "Remove exposure of users on dashboard"
Diffstat (limited to 'src/account/migrations')
-rw-r--r-- | src/account/migrations/0007_userprofile_pulic_user.py | 18 | ||||
-rw-r--r-- | src/account/migrations/0008_auto_20210324_2106.py | 18 | ||||
-rw-r--r-- | src/account/migrations/0009_auto_20210324_2107.py | 18 |
3 files changed, 54 insertions, 0 deletions
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), + ), + ] 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', + ), + ] diff --git a/src/account/migrations/0009_auto_20210324_2107.py b/src/account/migrations/0009_auto_20210324_2107.py new file mode 100644 index 0000000..baa7382 --- /dev/null +++ b/src/account/migrations/0009_auto_20210324_2107.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2 on 2021-03-24 21:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('account', '0008_auto_20210324_2106'), + ] + + operations = [ + migrations.AlterField( + model_name='userprofile', + name='public_user', + field=models.BooleanField(default=False), + ), + ] |