Lines 1616-1622
CREATE TABLE `issues` ( -- information related to check outs or issues
Link Here
|
1616 |
`auto_renew_error` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, -- automatic renewal error |
1616 |
`auto_renew_error` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, -- automatic renewal error |
1617 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1617 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1618 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1618 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1619 |
`onsite_checkout` int(1) NOT NULL default 0, -- in house use flag |
1619 |
`checkout_type` ENUM('CHECKOUT', 'ONSITE') NOT NULL default 'CHECKOUT', -- checkout type |
1620 |
`note` LONGTEXT default NULL, -- issue note text |
1620 |
`note` LONGTEXT default NULL, -- issue note text |
1621 |
`notedate` datetime default NULL, -- datetime of issue note (yyyy-mm-dd hh:mm::ss) |
1621 |
`notedate` datetime default NULL, -- datetime of issue note (yyyy-mm-dd hh:mm::ss) |
1622 |
`noteseen` int(1) default NULL, -- describes whether checkout note has been seen 1, not been seen 0 or doesn't exist null |
1622 |
`noteseen` int(1) default NULL, -- describes whether checkout note has been seen 1, not been seen 0 or doesn't exist null |
Lines 1648-1654
CREATE TABLE `old_issues` ( -- lists items that were checked out and have been r
Link Here
|
1648 |
`auto_renew_error` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, -- automatic renewal error |
1648 |
`auto_renew_error` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, -- automatic renewal error |
1649 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1649 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1650 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1650 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1651 |
`onsite_checkout` int(1) NOT NULL default 0, -- in house use flag |
1651 |
`checkout_type` ENUM('CHECKOUT', 'ONSITE') NOT NULL default 'CHECKOUT', -- checkout type |
1652 |
`note` LONGTEXT default NULL, -- issue note text |
1652 |
`note` LONGTEXT default NULL, -- issue note text |
1653 |
`notedate` datetime default NULL, -- datetime of issue note (yyyy-mm-dd hh:mm::ss) |
1653 |
`notedate` datetime default NULL, -- datetime of issue note (yyyy-mm-dd hh:mm::ss) |
1654 |
`noteseen` int(1) default NULL, -- describes whether checkout note has been seen 1, not been seen 0 or doesn't exist null |
1654 |
`noteseen` int(1) default NULL, -- describes whether checkout note has been seen 1, not been seen 0 or doesn't exist null |
1655 |
- |
|
|