forked from DGNum/gestioCOF
31 lines
877 B
Python
31 lines
877 B
Python
|
# Generated by Django 2.2.17 on 2021-02-23 23:22
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("kfet", "0076_unfreeze_accounts"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name="operation",
|
||
|
options={
|
||
|
"permissions": (
|
||
|
("perform_deposit", "Effectuer une charge"),
|
||
|
(
|
||
|
"perform_negative_operations",
|
||
|
"Enregistrer des commandes en négatif",
|
||
|
),
|
||
|
("cancel_old_operations", "Annuler des commandes non récentes"),
|
||
|
(
|
||
|
"perform_commented_operations",
|
||
|
"Enregistrer des commandes avec commentaires",
|
||
|
),
|
||
|
)
|
||
|
},
|
||
|
),
|
||
|
]
|