Upgrading to TimePRO 1.0.0.60 from 1.0.0.53
The tables are different if you compare 1.0.0.53 and 1.0.0.60:
The table changes is more than what we thought.
So, to upgrade from older version (.5x) to (.6x), you need to
restructure the old table to get it work, not just adding the Host_type field,.
Use EdotTime
go
alter table client_server drop column clientserver_enabled
go
alter table client_server add Login_Usr Char(100)
go
alter table client_server add Host_Type Char(1)
go
Update client_server set Host_type=’S’
go
NOTE: remember to upgrade both to 1.0.0.69, not just Server.