Lines 4560-4565
CREATE TABLE `matchchecks` (
Link Here
|
4560 |
`matchcheck_id` int(11) NOT NULL AUTO_INCREMENT, |
4560 |
`matchcheck_id` int(11) NOT NULL AUTO_INCREMENT, |
4561 |
`source_matchpoint_id` int(11) NOT NULL, |
4561 |
`source_matchpoint_id` int(11) NOT NULL, |
4562 |
`target_matchpoint_id` int(11) NOT NULL, |
4562 |
`target_matchpoint_id` int(11) NOT NULL, |
|
|
4563 |
`operator` varchar(32) NOT NULL DEFAULT 'eq', |
4563 |
PRIMARY KEY (`matchcheck_id`), |
4564 |
PRIMARY KEY (`matchcheck_id`), |
4564 |
KEY `matcher_matchchecks_ifbk_1` (`matcher_id`), |
4565 |
KEY `matcher_matchchecks_ifbk_1` (`matcher_id`), |
4565 |
KEY `matcher_matchchecks_ifbk_2` (`source_matchpoint_id`), |
4566 |
KEY `matcher_matchchecks_ifbk_2` (`source_matchpoint_id`), |
Lines 4613-4618
DROP TABLE IF EXISTS `matchpoint_components`;
Link Here
|
4613 |
CREATE TABLE `matchpoint_components` ( |
4614 |
CREATE TABLE `matchpoint_components` ( |
4614 |
`matchpoint_id` int(11) NOT NULL, |
4615 |
`matchpoint_id` int(11) NOT NULL, |
4615 |
`matchpoint_component_id` int(11) NOT NULL AUTO_INCREMENT, |
4616 |
`matchpoint_component_id` int(11) NOT NULL AUTO_INCREMENT, |
|
|
4617 |
`constant` mediumtext DEFAULT NULL, |
4616 |
`sequence` int(11) NOT NULL DEFAULT 0, |
4618 |
`sequence` int(11) NOT NULL DEFAULT 0, |
4617 |
`tag` varchar(3) NOT NULL DEFAULT '', |
4619 |
`tag` varchar(3) NOT NULL DEFAULT '', |
4618 |
`subfields` varchar(40) NOT NULL DEFAULT '', |
4620 |
`subfields` varchar(40) NOT NULL DEFAULT '', |
4619 |
- |
|
|