mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-01 07:32:47 +00:00
c4a104b3b6
Just ran black on the whoe repository. Fix #210.
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2018-08-14 08:59
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("users", "0073_auto_20180629_1614")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="user",
|
|
name="email",
|
|
field=models.EmailField(
|
|
blank=True,
|
|
null=True,
|
|
help_text="External email address allowing us to contact you.",
|
|
max_length=254,
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="user",
|
|
name="local_email_enabled",
|
|
field=models.BooleanField(
|
|
default=False, help_text="Enable the local email account."
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="user",
|
|
name="local_email_redirect",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="Enable redirection of the local email messages to the main email.",
|
|
),
|
|
),
|
|
]
|