Lines 245-251
CREATE TABLE `borrowers` ( -- this table includes information about your patrons
Link Here
|
245 |
`ethnicity` varchar(50) default NULL, -- unused in Koha |
245 |
`ethnicity` varchar(50) default NULL, -- unused in Koha |
246 |
`ethnotes` varchar(255) default NULL, -- unused in Koha |
246 |
`ethnotes` varchar(255) default NULL, -- unused in Koha |
247 |
`sex` varchar(1) default NULL, -- patron/borrower's gender |
247 |
`sex` varchar(1) default NULL, -- patron/borrower's gender |
248 |
`password` varchar(30) default NULL, -- patron/borrower's encrypted password |
248 |
`password` varchar(60) default NULL, -- patron/borrower's encrypted password |
249 |
`flags` int(11) default NULL, -- will include a number associated with the staff member's permissions |
249 |
`flags` int(11) default NULL, -- will include a number associated with the staff member's permissions |
250 |
`userid` varchar(75) default NULL, -- patron/borrower's opac and/or staff client log in |
250 |
`userid` varchar(75) default NULL, -- patron/borrower's opac and/or staff client log in |
251 |
`opacnote` mediumtext, -- a note on the patron/borrower's account that is visible in the OPAC and staff client |
251 |
`opacnote` mediumtext, -- a note on the patron/borrower's account that is visible in the OPAC and staff client |