18 lines
505 B
Python
18 lines
505 B
Python
# Generated by Django 2.0.2 on 2018-05-27 10:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('neluser', '0002_auto_20180204_2035'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='neluser',
|
|
name='nsfw_allowed',
|
|
field=models.BooleanField(default=False, help_text='Indicate whether or not adult or sensitive content should be displayed.', verbose_name='NSFW flag'),
|
|
),
|
|
]
|