Bug 4118: Follow up: Add ccode to kohastructure for stats
CCode was added to the statistics table in this bug, but was not added to kohastructure.sql. This patch adds it with comment to the kohastructure. Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
e9dc807b32
commit
b0b927f4f2
1 changed files with 1 additions and 0 deletions
|
@ -1826,6 +1826,7 @@ CREATE TABLE `statistics` ( -- information related to transactions (circulation
|
|||
`itemtype` varchar(10) default NULL, -- foreign key from the itemtypes table, links transaction to a specific item type
|
||||
`borrowernumber` int(11) default NULL, -- foreign key from the borrowers table, links transaction to a specific borrower
|
||||
`associatedborrower` int(11) default NULL,
|
||||
`ccode` int(11) default NULL, -- foreign key from the items table, links transaction to a specific collection code
|
||||
KEY `timeidx` (`datetime`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
|
Loading…
Reference in a new issue