diff --git a/djangocms_inline_comment/__init__.py b/djangocms_inline_comment/__init__.py index f5ec497..3ed7bf4 100644 --- a/djangocms_inline_comment/__init__.py +++ b/djangocms_inline_comment/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.0.2' # pragma: no cover +__version__ = '0.0.3' # pragma: no cover diff --git a/djangocms_inline_comment/migrations/0001_initial.py b/djangocms_inline_comment/migrations/0001_initial.py index af96035..ca5ab08 100644 --- a/djangocms_inline_comment/migrations/0001_initial.py +++ b/djangocms_inline_comment/migrations/0001_initial.py @@ -15,7 +15,7 @@ class Migration(migrations.Migration): migrations.CreateModel( name='InlineComment', fields=[ - ('cmsplugin_ptr', models.OneToOneField(parent_link=True, related_name='djangocms_inline_comment_inlinecomment', auto_created=True, primary_key=True, serialize=False, to='cms.CMSPlugin')), + ('cmsplugin_ptr', models.OneToOneField(parent_link=True, related_name='djangocms_inline_comment_inlinecomment', auto_created=True, primary_key=True, serialize=False, to='cms.CMSPlugin', on_delete=models.CASCADE)), ('body', djangocms_text_ckeditor.fields.HTMLField(null=True, verbose_name='Comment', blank=True)), ], options={