2018-03-22 21:56:13 -04:00
|
|
|
# Generated by Django 2.0.3 on 2018-03-23 01:00
|
|
|
|
|
|
|
|
import computed_property.fields
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2023-08-10 02:52:37 -04:00
|
|
|
("users", "0012_auto_20180129_1614"),
|
2018-03-22 21:56:13 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2023-08-10 02:52:37 -04:00
|
|
|
model_name="user",
|
|
|
|
name="email_md5",
|
|
|
|
field=computed_property.fields.ComputedCharField(
|
|
|
|
compute_from="calc_email_md5",
|
|
|
|
default="",
|
|
|
|
editable=False,
|
|
|
|
max_length=32,
|
|
|
|
unique=True,
|
|
|
|
),
|
2018-03-22 21:56:13 -04:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2023-08-10 02:52:37 -04:00
|
|
|
model_name="user",
|
|
|
|
name="email_sha256",
|
|
|
|
field=computed_property.fields.ComputedCharField(
|
|
|
|
compute_from="calc_email_sha256",
|
|
|
|
default="",
|
|
|
|
editable=False,
|
|
|
|
max_length=64,
|
|
|
|
unique=True,
|
|
|
|
),
|
2018-03-22 21:56:13 -04:00
|
|
|
),
|
|
|
|
]
|