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.
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.