DATABASE CHANGE : Add last_modified column in all testcase table
Do it on table : test, testcase, testcasecountry, testcasecountryproperties, testcasestep, testcasestepaction, testcasestepactioncontrol
Column in timestamp format.
Can it be done in steps, to try to avoid a huge time to implement the database change?
I reopen this issue and modify the default timestamp to 0 instead of DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP as on Mysql 5.5.xx , we cannot have two columns with defaut value CURRENT_TIMESTAMP.
Timestamp will have to be managed by the application for this column.
In fact we should enlarge having the 4 standard fields in all tables : Creator varchar(45) Created timestamp LastModifier varchar(45) LastModified timestamp
I propose the new format in all tables (last 4 columns of all tables) : UsrCreated varchar(45) DateCreated timestamp UsrModif varchar(45) DateModif timestamp
That means for example : last_modified --> DateMod
- in test, testcasecountry, testcasecountryproperty, testcasestep, testcasestepaction, testcasestepactioncontrol, LastModified --> DateMod
- in testdatalib
Is there any news for this one?
Standard is defined and all new table created since have that format. A lot of tables are still to correct.