User can try to finish the model update and additionally remove these double quote marks by the following script.
He must open Scripting windows from the menu Expert mode, select the proper model from the list of the Available objects (upper left corner) and add it to the right into selected objects, insert the following code to scripting window and execute script.
function main()
{for (var i = 0; i < Model.Entities.Count; i++)
{
var Entity = Model.Entities.GetObject(i);
for (var j = 0; j < Entity.Attributes.Count; j++)
{
var Attribute = Entity.Attributes.GetObject(j);
if(Attribute.DefaultValue == '"CURRENT_TIMESTAMP"')
Attribute.DefaultValue = 'CURRENT_TIMESTAMP';
}
}
}
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center