Lines 4975-4982
CREATE TABLE `overduerules` (
Link Here
|
4975 |
`debarred3` int(1) DEFAULT 0 COMMENT 'is the patron restricted when the third notice is sent (1 for yes, 0 for no)', |
4975 |
`debarred3` int(1) DEFAULT 0 COMMENT 'is the patron restricted when the third notice is sent (1 for yes, 0 for no)', |
4976 |
PRIMARY KEY (`overduerules_id`), |
4976 |
PRIMARY KEY (`overduerules_id`), |
4977 |
UNIQUE KEY `overduerules_branch_cat` (`branchcode`,`categorycode`), |
4977 |
UNIQUE KEY `overduerules_branch_cat` (`branchcode`,`categorycode`), |
4978 |
CONSTRAINT `fk_branchcode` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE, |
4978 |
CONSTRAINT `branchcode_ibfk` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE, |
4979 |
CONSTRAINT `fk_categorycode` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE |
4979 |
CONSTRAINT `categorycode_ibfk` FOREIGN KEY (`categorycode`) REFERENCES `categories` (`categorycode`) ON DELETE CASCADE ON UPDATE CASCADE |
4980 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4980 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4981 |
/*!40101 SET character_set_client = @saved_cs_client */; |
4981 |
/*!40101 SET character_set_client = @saved_cs_client */; |
4982 |
|
4982 |
|
4983 |
- |
|
|