Lines 899-908
CREATE TABLE `import_records` (
Link Here
|
899 |
-- Table structure for `import_record_matches` |
899 |
-- Table structure for `import_record_matches` |
900 |
-- |
900 |
-- |
901 |
DROP TABLE IF EXISTS `import_record_matches`; |
901 |
DROP TABLE IF EXISTS `import_record_matches`; |
902 |
CREATE TABLE `import_record_matches` ( |
902 |
CREATE TABLE `import_record_matches` ( -- matches found when importing a batch of records |
903 |
`import_record_id` int(11) NOT NULL, |
903 |
`import_record_id` int(11) NOT NULL, -- the id given to the imported bib record (import_records.import_record_id) |
904 |
`candidate_match_id` int(11) NOT NULL, |
904 |
`candidate_match_id` int(11) NOT NULL, -- the biblio the imported record matches (biblio.biblionumber) |
905 |
`score` int(11) NOT NULL default 0, |
905 |
`score` int(11) NOT NULL default 0, -- the match score |
906 |
CONSTRAINT `import_record_matches_ibfk_1` FOREIGN KEY (`import_record_id`) |
906 |
CONSTRAINT `import_record_matches_ibfk_1` FOREIGN KEY (`import_record_id`) |
907 |
REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE, |
907 |
REFERENCES `import_records` (`import_record_id`) ON DELETE CASCADE ON UPDATE CASCADE, |
908 |
KEY `record_score` (`import_record_id`, `score`) |
908 |
KEY `record_score` (`import_record_id`, `score`) |
909 |
- |
|
|