2017-09-10 16:16:59 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2017-09-10 16:16
|
|
|
|
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", "0017_mailmessageoption")]
|
2017-09-10 16:16:59 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="optionaltopologie",
|
|
|
|
name="mac_autocapture",
|
2017-09-10 16:16:59 +00:00
|
|
|
field=models.BooleanField(default=False),
|
2019-11-04 16:55:03 +00:00
|
|
|
)
|
2017-09-10 16:16:59 +00:00
|
|
|
]
|