a Django-based indieweb.org site
https://00dani.me/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
682 B
21 lines
682 B
# 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 = [ |
|
('users', '0014_auto_20180711_1248'), |
|
] |
|
|
|
operations = [ |
|
migrations.AddField( |
|
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), |
|
preserve_default=False, |
|
), |
|
]
|
|
|