Hello,
- custom entity association with a multi-enum-field named language with value 1 for option german and 2 for option english
- import-csv-file contained a column language with contents ["1"] (for german), ["2"] (for english) or ["1","2"] (for german AND english)
- in import the entity-field language is linked with the csv-field language
- I expected, that the import ads one record in table array_value with id (generated), value 1 (for german), attribute language, entity_id of record of association and entity_type association
- or two records for 1 and 2 - one with value 1 and one with value 2
... but no records are created
what is my misunderstanding? Or what had to be the contents of csv-field language?
Or is it impossible to import this with the import-function of administration (if there is more than one option)? ... and I have to do it by myself with a sql-insert directly in the table array_value (after imported assiciations without the field language - to know the entity-id)?
Christoph
- custom entity association with a multi-enum-field named language with value 1 for option german and 2 for option english
- import-csv-file contained a column language with contents ["1"] (for german), ["2"] (for english) or ["1","2"] (for german AND english)
- in import the entity-field language is linked with the csv-field language
- I expected, that the import ads one record in table array_value with id (generated), value 1 (for german), attribute language, entity_id of record of association and entity_type association
- or two records for 1 and 2 - one with value 1 and one with value 2
... but no records are created
what is my misunderstanding? Or what had to be the contents of csv-field language?
Or is it impossible to import this with the import-function of administration (if there is more than one option)? ... and I have to do it by myself with a sql-insert directly in the table array_value (after imported assiciations without the field language - to know the entity-id)?
Christoph
Comment