View | Details | Raw Unified | Return to bug 6716
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-5 / +4 lines)
Lines 1317-1326 CREATE TABLE `matchchecks` ( Link Here
1317
--
1317
--
1318
1318
1319
DROP TABLE IF EXISTS `need_merge_authorities`;
1319
DROP TABLE IF EXISTS `need_merge_authorities`;
1320
CREATE TABLE `need_merge_authorities` (
1320
CREATE TABLE `need_merge_authorities` ( -- keeping track of authority records still to be merged by merge_authority cron job (used only if pref dontmerge is ON)
1321
  `id` int NOT NULL auto_increment PRIMARY KEY,
1321
  `id` int NOT NULL auto_increment PRIMARY KEY, -- unique id
1322
  `authid` bigint NOT NULL,
1322
  `authid` bigint NOT NULL, -- reference to authority record
1323
  `done` tinyint DEFAULT 0
1323
  `done` tinyint DEFAULT 0  -- indication whether merge has been executed (0=not done, 1= done, 2= in progress)
1324
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1324
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1325
1325
1326
--
1326
--
1327
- 

Return to bug 6716