19 lines
455 B
Python
19 lines
455 B
Python
# Generated by Django 2.1.1 on 2018-10-03 16:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('user', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='anonymize',
|
|
field=models.BooleanField(default=True, help_text="Let's be honest, your name doesn't add anything to the conversation."),
|
|
),
|
|
]
|