2018-02-28 15:36:59 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2018-02-28 13:40
|
|
|
|
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", "0042_auto_20180222_1743")]
|
2018-02-28 15:36:59 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="optionalmachine",
|
|
|
|
name="create_machine",
|
|
|
|
field=models.BooleanField(
|
|
|
|
default=True, help_text="Permet à l'user de créer une machine"
|
|
|
|
),
|
|
|
|
)
|
2018-02-28 15:36:59 +00:00
|
|
|
]
|