Add file moderation tool

This commit is contained in:
Skia 2016-11-09 09:13:57 +01:00
parent 5ea41de91d
commit 157b1e4c78

View File

@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0006_merge'),
]
operations = [
migrations.RemoveField(
model_name='sithfile',
name='is_authorized',
),
migrations.AddField(
model_name='sithfile',
name='is_moderated',
field=models.BooleanField(verbose_name='is moderated', default=False),
),
]