Skip to content

Commit

Permalink
Merge 603700b into 3aff77a
Browse files Browse the repository at this point in the history
  • Loading branch information
zbohm committed Sep 15, 2020
2 parents 3aff77a + 603700b commit 4a6be21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion djangocms_inline_comment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.0.2' # pragma: no cover
__version__ = '0.0.3' # pragma: no cover
2 changes: 1 addition & 1 deletion djangocms_inline_comment/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down

0 comments on commit 4a6be21

Please sign in to comment.