Sith/trombi/migrations/0003_trombicomment_is_moderated.py

20 lines
472 B
Python
Raw Normal View History

2017-05-12 16:30:06 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2018-10-04 19:29:19 +00:00
dependencies = [("trombi", "0002_trombi_show_profiles")]
2017-05-12 16:30:06 +00:00
operations = [
migrations.AddField(
2018-10-04 19:29:19 +00:00
model_name="trombicomment",
name="is_moderated",
field=models.BooleanField(
default=False, verbose_name="is the comment moderated"
),
)
2017-05-12 16:30:06 +00:00
]