A generated column cannot be written to directly. In INSERT or UPDATE commands, a value cannot be specified for a generated column, but the keyword DEFAULT may be specified.
Current version of DDF is incompotible with this type of fields, because even with DDF_IGNORE_FIELDS = ['search_vector'] there is instert of None in this field. This field must be excluded altogether from generated SQL or keyword DEFAULT must be used.
django==2.2.13 django-dynamic-fixture==3.1.0
Generated Columns are introduced with Postgres 12.
Current version of DDF is incompotible with this type of fields, because even with DDF_IGNORE_FIELDS = ['search_vector'] there is instert of None in this field. This field must be excluded altogether from generated SQL or keyword DEFAULT must be used.