Lines 1315-1324
CREATE TABLE `matchchecks` (
Link Here
|
1315 |
-- |
1315 |
-- |
1316 |
|
1316 |
|
1317 |
DROP TABLE IF EXISTS `need_merge_authorities`; |
1317 |
DROP TABLE IF EXISTS `need_merge_authorities`; |
1318 |
CREATE TABLE `need_merge_authorities` ( |
1318 |
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) |
1319 |
`id` int NOT NULL auto_increment PRIMARY KEY, |
1319 |
`id` int NOT NULL auto_increment PRIMARY KEY, -- unique id |
1320 |
`authid` bigint NOT NULL, |
1320 |
`authid` bigint NOT NULL, -- reference to authority record |
1321 |
`done` tinyint DEFAULT 0 |
1321 |
`done` tinyint DEFAULT 0 -- indication whether merge has been executed (0=not done, 1= done, 2= in progress) |
1322 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
1322 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
1323 |
|
1323 |
|
1324 |
-- |
1324 |
-- |
1325 |
- |
|
|