LeeHanYeong / django-quill-editor

django-quill-editor makes Quill.js easy to use on Django Forms and admin sites
https://django-quill-editor.readthedocs.io
MIT License
197 stars 49 forks source link

fix convert_to_quill command - adding only #119

Closed dsovak closed 1 month ago

dsovak commented 1 year ago

Adding only "field_name" to queryset. It is a safer way, because if you have call_command('convert_to_quill', ...) in db migration, and db schema will be changed in the future, you get error during migration, because db cannot find new field in 'convert_to_quill' command. It exits only in model that time.