Lines 1401-1406
CREATE TABLE `borrower_modifications` (
Link Here
|
1401 |
`cardnumber` varchar(32) DEFAULT NULL, |
1401 |
`cardnumber` varchar(32) DEFAULT NULL, |
1402 |
`surname` longtext DEFAULT NULL, |
1402 |
`surname` longtext DEFAULT NULL, |
1403 |
`firstname` mediumtext DEFAULT NULL, |
1403 |
`firstname` mediumtext DEFAULT NULL, |
|
|
1404 |
`preferred_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s preferred name', |
1404 |
`middle_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s middle name', |
1405 |
`middle_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s middle name', |
1405 |
`title` longtext DEFAULT NULL, |
1406 |
`title` longtext DEFAULT NULL, |
1406 |
`othernames` longtext DEFAULT NULL, |
1407 |
`othernames` longtext DEFAULT NULL, |
Lines 1522-1527
CREATE TABLE `borrowers` (
Link Here
|
1522 |
`cardnumber` varchar(32) DEFAULT NULL COMMENT 'unique key, library assigned ID number for patrons/borrowers', |
1523 |
`cardnumber` varchar(32) DEFAULT NULL COMMENT 'unique key, library assigned ID number for patrons/borrowers', |
1523 |
`surname` longtext DEFAULT NULL COMMENT 'patron/borrower''s last name (surname)', |
1524 |
`surname` longtext DEFAULT NULL COMMENT 'patron/borrower''s last name (surname)', |
1524 |
`firstname` mediumtext DEFAULT NULL COMMENT 'patron/borrower''s first name', |
1525 |
`firstname` mediumtext DEFAULT NULL COMMENT 'patron/borrower''s first name', |
|
|
1526 |
`preferred_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s preferred name', |
1525 |
`middle_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s middle name', |
1527 |
`middle_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s middle name', |
1526 |
`title` longtext DEFAULT NULL COMMENT 'patron/borrower''s title, for example: Mr. or Mrs.', |
1528 |
`title` longtext DEFAULT NULL COMMENT 'patron/borrower''s title, for example: Mr. or Mrs.', |
1527 |
`othernames` longtext DEFAULT NULL COMMENT 'any other names associated with the patron/borrower', |
1529 |
`othernames` longtext DEFAULT NULL COMMENT 'any other names associated with the patron/borrower', |
Lines 2660-2665
CREATE TABLE `deletedborrowers` (
Link Here
|
2660 |
`cardnumber` varchar(32) DEFAULT NULL COMMENT 'unique key, library assigned ID number for patrons/borrowers', |
2662 |
`cardnumber` varchar(32) DEFAULT NULL COMMENT 'unique key, library assigned ID number for patrons/borrowers', |
2661 |
`surname` longtext DEFAULT NULL COMMENT 'patron/borrower''s last name (surname)', |
2663 |
`surname` longtext DEFAULT NULL COMMENT 'patron/borrower''s last name (surname)', |
2662 |
`firstname` mediumtext DEFAULT NULL COMMENT 'patron/borrower''s first name', |
2664 |
`firstname` mediumtext DEFAULT NULL COMMENT 'patron/borrower''s first name', |
|
|
2665 |
`preferred_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s preferred name', |
2663 |
`middle_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s middle name', |
2666 |
`middle_name` longtext DEFAULT NULL COMMENT 'patron/borrower''s middle name', |
2664 |
`title` longtext DEFAULT NULL COMMENT 'patron/borrower''s title, for example: Mr. or Mrs.', |
2667 |
`title` longtext DEFAULT NULL COMMENT 'patron/borrower''s title, for example: Mr. or Mrs.', |
2665 |
`othernames` longtext DEFAULT NULL COMMENT 'any other names associated with the patron/borrower', |
2668 |
`othernames` longtext DEFAULT NULL COMMENT 'any other names associated with the patron/borrower', |
2666 |
- |
|
|