Hi.
I've just upgraded from ORM Designer 1.4.6.488 to 2.1.12.719 and am in the process of converting some Symfony1 diagrams (which export as a single schema.yml file).
In ORM Designer 1.4.6.488 when I created a many-to-many relationship a 'link' entity was correctly created, with two one-to-many relationships:

I was then able to edit one of the one-to-many relationships if I wanted to customise the alias:

When the schema.yml file was exported under ORM Designer 1.4.6.488, this would generate two relations:
EarlyInterventionPartnerSchool:
columns:
id:
primary: true
unique: true
type: integer
notnull: true
autoincrement: true
partner_id:
type: integer
notnull: true
school_id:
type: integer
notnull: true
relations:
Partner:
class: EarlyInterventionPartner
local: partner_id
foreign: id
School:
class: EarlyInterventionSchool
local: school_id
foreign: id
However, when I imported the .ormdesigner file into 2.1.12.719 I've noticed that these relations are not exported to the schema.yml:
EarlyInterventionPartnerSchool:
columns:
id:
unique: true
primary: true
type: integer
notnull: true
autoincrement: true
partner_id:
type: integer
notnull: true
school_id:
type: integer
notnull: true
So the relationships are lost :(
In ORM Designer 2.1.12.719, when I look at the same many-to-many relationship, I see the same link entity with two one-to-many relationships, but if I double-click either of the one-to-many relationships I am only able to edit the overall many-to-many relationship that has been modelled:

Can someone please tell me whether this is a known problem or a feature, and how best can I import my ORM Designer 1.4.6.488 so that it reliably generates these all-important 'relations' in the schema.yml file?
Thanks