3
0

Post testing tweaks and fixes

This commit is contained in:
Tomaž Jerman
2023-06-20 14:14:54 +02:00
parent 7b5e8d1aa9
commit 6795e5e0f2
15 changed files with 1225 additions and 157 deletions

View File

@@ -180,7 +180,7 @@ func (dd ModelDiffSet) Alterations() (out []*Alteration) {
add(&Alteration{
AttributeReType: &AttributeReType{
Attr: d.Original,
Attr: d.Inserted,
To: d.Inserted.Type,
},
})
@@ -188,8 +188,8 @@ func (dd ModelDiffSet) Alterations() (out []*Alteration) {
case AttributeCodecMismatch:
add(&Alteration{
AttributeReEncode: &AttributeReEncode{
Attr: d.Original,
To: d.Inserted,
Attr: d.Inserted,
To: d.Inserted.Store,
},
})
}