We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When migrating from ella-comments you need to:
Settings:
ella_flatcomments
INSTALLED_APPS
run migration:
>>> from ella_flatcomments.utils import migrate_legacy_comments >>> migrate_legacy_comments()
remove django.contrib.comments, threadedcomments and ella_comments from INSTALLED_APPS
django.contrib.comments
threadedcomments
ella_comments
note that for some DBs (postgres) you will need to reset the DB's sequence:
SELECT setval(pg_get_serial_sequence('ella_flatcomments_flatcomment', 'id'), (SELECT max(id) + 1 from ella_flatcomments_flatcomment));