2016-08-08 03:49:10 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
from django.db import migrations, models
|
2016-08-08 03:49:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2018-10-06 12:35:49 +02:00
|
|
|
dependencies = [("kfet", "0017_auto_20160808_0234")]
|
2016-08-08 03:49:10 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterModelOptions(
|
2018-10-06 12:35:49 +02:00
|
|
|
name="globalpermissions",
|
|
|
|
options={
|
|
|
|
"permissions": (
|
|
|
|
("is_team", "Is part of the team"),
|
|
|
|
("can_perform_deposit", "Effectuer une charge"),
|
|
|
|
(
|
|
|
|
"can_perform_negative_operations",
|
|
|
|
"Enregistrer des commandes en négatif",
|
|
|
|
),
|
|
|
|
("override_frozen_protection", "Forcer le gel d'un compte"),
|
|
|
|
),
|
|
|
|
"managed": False,
|
|
|
|
},
|
|
|
|
)
|
2016-08-08 03:49:10 +02:00
|
|
|
]
|