We have an extension which version is 1.0 and have a table test:
field(1; ItemID; code[20]) { DataClassification = CustomerContent; }
Now, we develop an extension for version 1.1, and change table test as below (changed field ItemID identifier):
field(2; ItemID; code[20]) { DataClassification = CustomerContent; }
So is there a way that I can test this change between version 1.0 and 1.1 automatically (if field identifier is different, then error out )?
Could anyone shed me some light on it?