From a8de7e0ae00e06e35900f6ad7f7a0d8362c86a45 Mon Sep 17 00:00:00 2001 From: Dorian Lesbre Date: Fri, 19 Feb 2021 13:38:36 +0100 Subject: [PATCH] makemigrations --- kfet/migrations/0074_auto_20210219_1337.py | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 kfet/migrations/0074_auto_20210219_1337.py diff --git a/kfet/migrations/0074_auto_20210219_1337.py b/kfet/migrations/0074_auto_20210219_1337.py new file mode 100644 index 00000000..7b4127d8 --- /dev/null +++ b/kfet/migrations/0074_auto_20210219_1337.py @@ -0,0 +1,36 @@ +# Generated by Django 2.2.17 on 2021-02-19 12:37 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("kfet", "0073_2021"), + ] + + operations = [ + migrations.AlterModelOptions( + name="account", + options={ + "permissions": ( + ("is_team", "Is part of the team"), + ("manage_perms", "Gérer les permissions K-Fêt"), + ("manage_addcosts", "Gérer les majorations"), + ("edit_balance_account", "Modifier la balance d'un compte"), + ( + "change_account_password", + "Modifier le mot de passe d'une personne de l'équipe", + ), + ( + "special_add_account", + "Créer un compte avec une balance initiale", + ), + ("can_force_close", "Fermer manuellement la K-Fêt"), + ("see_config", "Voir la configuration K-Fêt"), + ("change_config", "Modifier la configuration K-Fêt"), + ("access_old_history", "Peut accéder à l'historique plus ancien"), + ) + }, + ), + ]