Lines 1166-1171
CREATE TABLE `issues` ( -- information related to check outs or issues
Link Here
|
1166 |
`return` varchar(4) default NULL, |
1166 |
`return` varchar(4) default NULL, |
1167 |
`renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed |
1167 |
`renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed |
1168 |
`auto_renew` BOOLEAN default FALSE, -- automatic renewal |
1168 |
`auto_renew` BOOLEAN default FALSE, -- automatic renewal |
|
|
1169 |
`auto_renew_error` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL, -- automatic renewal error |
1169 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1170 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1170 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1171 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1171 |
`onsite_checkout` int(1) NOT NULL default 0, -- in house use flag |
1172 |
`onsite_checkout` int(1) NOT NULL default 0, -- in house use flag |
Lines 1666-1671
CREATE TABLE `old_issues` ( -- lists items that were checked out and have been r
Link Here
|
1666 |
`return` varchar(4) default NULL, |
1667 |
`return` varchar(4) default NULL, |
1667 |
`renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed |
1668 |
`renewals` tinyint(4) default NULL, -- lists the number of times the item was renewed |
1668 |
`auto_renew` BOOLEAN default FALSE, -- automatic renewal |
1669 |
`auto_renew` BOOLEAN default FALSE, -- automatic renewal |
|
|
1670 |
`auto_renew_error` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL, -- automatic renewal error |
1669 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1671 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this record was last touched |
1670 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1672 |
`issuedate` datetime default NULL, -- date the item was checked out or issued |
1671 |
`onsite_checkout` int(1) NOT NULL default 0, -- in house use flag |
1673 |
`onsite_checkout` int(1) NOT NULL default 0, -- in house use flag |
1672 |
- |
|
|