From 4ae39b4192bf76487c35abf7b578cfcb8812768f Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 20 Oct 2011 09:25:23 +0200 Subject: [PATCH] 6717 Documenting need_merge_authorities table Documentation only. http://bugs.koha-community.org/show_bug.cgi?id=6716 Signed-off-by: Katrin Fischer (cherry picked from commit d471a79e92126d4d70b70e41013fe366ffbcba6e) Signed-off-by: Chris Nighswonger (cherry picked from commit 565ac906e04ee9afa843a31a7392b15fdc777b3f) Signed-off-by: Chris Nighswonger --- installer/data/mysql/kohastructure.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index fda8e9fbd5..bebeaf760b 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1309,10 +1309,10 @@ CREATE TABLE `matchchecks` ( -- DROP TABLE IF EXISTS `need_merge_authorities`; -CREATE TABLE `need_merge_authorities` ( - `id` int NOT NULL auto_increment PRIMARY KEY, - `authid` bigint NOT NULL, - `done` tinyint DEFAULT 0 +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) + `id` int NOT NULL auto_increment PRIMARY KEY, -- unique id + `authid` bigint NOT NULL, -- reference to authority record + `done` tinyint DEFAULT 0 -- indication whether merge has been executed (0=not done, 1= done, 2= in progress) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- 2.39.5