8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-16 23:56:12 +00:00
re2o/users/migrations/0074_auto_20180814_1059.py
Hugo Levy-Falk c4a104b3b6 I like my black.
Just ran black on the whoe repository. Fix #210.
2019-11-04 22:47:24 +01:00

39 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.",
),
),
]