From 4b6df72a1db51782ccccb7e08bd3dad74e95eaa9 Mon Sep 17 00:00:00 2001 From: Robin Schaufler Date: Fri, 23 Sep 2016 15:14:57 -0400 Subject: [PATCH] Threaded comments migration New version of django module changed threaded comment metadata. Update the schema for the subclass of the django model. Necessary for release 2.12.0. --- .../migrations/0003_auto_20160923_1413.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 opentreemap/otm_comments/migrations/0003_auto_20160923_1413.py diff --git a/opentreemap/otm_comments/migrations/0003_auto_20160923_1413.py b/opentreemap/otm_comments/migrations/0003_auto_20160923_1413.py new file mode 100644 index 000000000..da9a256d3 --- /dev/null +++ b/opentreemap/otm_comments/migrations/0003_auto_20160923_1413.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('otm_comments', '0002_auto_20150630_1556'), + ] + + operations = [ + migrations.AlterModelOptions( + name='enhancedthreadedcomment', + options={'ordering': ('submit_date',), 'verbose_name': 'comment', 'verbose_name_plural': 'comments', 'permissions': [('can_moderate', 'Can moderate comments')]}, + ), + ]