Lines 1771-1777
CREATE TABLE `reserves` ( -- information related to holds/reserves in Koha
Link Here
|
1771 |
`reminderdate` date default NULL, -- currently unused |
1771 |
`reminderdate` date default NULL, -- currently unused |
1772 |
`cancellationdate` date default NULL, -- the date this hold was cancelled |
1772 |
`cancellationdate` date default NULL, -- the date this hold was cancelled |
1773 |
`reservenotes` LONGTEXT, -- notes related to this hold |
1773 |
`reservenotes` LONGTEXT, -- notes related to this hold |
1774 |
`priority` smallint(6) default NULL, -- where in the queue the patron sits |
1774 |
`priority` smallint(6) NOT NULL, -- where in the queue the patron sits |
1775 |
`found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed |
1775 |
`found` varchar(1) default NULL, -- a one letter code defining what the status is of the hold is after it has been confirmed |
1776 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated |
1776 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this hold was last updated |
1777 |
`itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with |
1777 |
`itemnumber` int(11) default NULL, -- foreign key from the items table defining the specific item the patron has placed on hold or the item this hold was filled with |
1778 |
- |
|
|