1
0
mirror of https://gitlab.com/brutaldon/brutaldon.git synced 2024-06-22 17:45:23 +00:00

Add migration for last config change

This commit is contained in:
Jason McBrayer 2020-06-01 10:22:28 -04:00
parent a536c35dfd
commit 391f31c76c

View File

@ -0,0 +1,18 @@
# Generated by Django 3.0.6 on 2020-06-01 14:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('brutaldon', '0024_auto_20200601_0945'),
]
operations = [
migrations.AddField(
model_name='preference',
name='preview_sensitive',
field=models.BooleanField(default=False, help_text='Show preview for media marked as "sensitive"'),
),
]