Environmental changes since 3.1.2
- Database Reports table: ALTER TABLE reportbean CHANGE COLUMN report_type report_type INT(11) NULL ; ALTER TABLE reportbean CHANGE COLUMN data_type report_type INT(11) NULL ; ALTER TABLE reportbean CHANGE COLUMN class_name report_type INT(11) NULL ; or remove all: ALTER TABLE reportbean DROP COLUMN class_name , DROP COLUMN report_type , DROP COLUMN data_type ;
- To fix the DB unique key on projectscript, so the same script can be set on different fields in one project. SQL to Fix the DB: ALTER TABLE projectscriptbean DROP INDEX project_id, ADD UNIQUE INDEX project_id (project_id ASC, script_id ASC, field_id ASC) ;
itracker 3.1.3 release-notes - Changes from 3.1.2
Import/Export Fixes.
Report Fixes.
Upgrades for dependencies.
Project Script fixes.