2018-07-10 23:13:12 -04:00
|
|
|
# Generated by Django 2.0.7 on 2018-07-11 03:07
|
|
|
|
|
|
|
|
import computed_property.fields
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2023-08-10 02:52:37 -04:00
|
|
|
("users", "0014_auto_20180711_1248"),
|
2018-07-10 23:13:12 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2023-08-10 02:52:37 -04:00
|
|
|
model_name="user",
|
|
|
|
name="openid_sha256",
|
|
|
|
field=computed_property.fields.ComputedCharField(
|
|
|
|
compute_from="calc_openid_sha256",
|
|
|
|
default="",
|
|
|
|
editable=False,
|
|
|
|
help_text="SHA-256 hash of the user's OpenID URL, used for Libravatar",
|
|
|
|
max_length=64,
|
|
|
|
unique=True,
|
|
|
|
),
|
2018-07-10 23:13:12 -04:00
|
|
|
preserve_default=False,
|
|
|
|
),
|
|
|
|
]
|