http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13795 Bug ID: 13795 Summary: Delete unused columns from statistics table. Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: ASSIGNED Severity: minor Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: nengard@gmail.com Reporter: nengard@gmail.com QA Contact: testopia@bugs.koha-community.org I ran the following on a system that has been using Koha for 3 years and it appears that none of these fields are ever used: mysql> select distinct proccode from statistics; +----------+ | proccode | +----------+ | NULL | +----------+ 1 row in set (0.00 sec) mysql> select distinct other from statistics; +-------+ | other | +-------+ | | +-------+ 1 row in set (18.30 sec) mysql> select distinct usercode from statistics; +----------+ | usercode | +----------+ | NULL | +----------+ 1 row in set (0.03 sec) mysql> select distinct associatedborrower from statistics; +--------------------+ | associatedborrower | +--------------------+ | NULL | +--------------------+ 1 row in set (0.00 sec) -- You are receiving this mail because: You are watching all bug changes.