Column LAST_UPDATED_DT DATE has DEFAULT value of LOCALTIMESTAMP that is not converted to real value during database conversion.
Default value in TDM is only a simple text field that is not converted during database conversion. During the conversion, only data types are converted. Nevertheless, similar problems can be solved via scripting in TDM. You can run the following script in MS Scripting dialog (Model menu | MS Scripting). The script will go through all attributes in all entities and if it finds default value LOCALTIMESTAMP, it will re-write it to date('now'):
function Main()
{
Log.Clear();
for (e=0; e<Model.CountEntities; e++)
{
Entity = Model.Entities(e);
for (a=0; a<Entity.CountAttributes; a++)
{
Attr = Entity.Attributes(a);
if (Attr.Default == "LOCALTIMESTAMP")
{
Attr.Default = "date('now')";
Log.Writeln("Default in attribute "+Attr.Name+" in entity "+Entity.Name+" was changed.");
}
}
}
Log.Writeln("Done");
}