2018-02-22 17:14:20 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2018-02-22 16:43
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
dependencies = [("preferences", "0041_merge_20180130_0052")]
|
2018-02-22 17:14:20 +00:00
|
|
|
|
|
|
|
operations = [
|
2019-11-04 16:55:03 +00:00
|
|
|
migrations.RemoveField(model_name="optionaluser", name="all_can_create"),
|
2018-02-22 17:14:20 +00:00
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="optionaluser",
|
|
|
|
name="all_can_create_adherent",
|
|
|
|
field=models.BooleanField(
|
|
|
|
default=False, help_text="Les users peuvent créer d'autres adhérents"
|
|
|
|
),
|
2018-02-22 17:14:20 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="optionaluser",
|
|
|
|
name="all_can_create_club",
|
|
|
|
field=models.BooleanField(
|
|
|
|
default=False, help_text="Les users peuvent créer un club"
|
|
|
|
),
|
2018-02-22 17:14:20 +00:00
|
|
|
),
|
|
|
|
]
|