Lines 2999-3004
CREATE TABLE `suggestions` ( -- purchase suggestions
Link Here
|
2999 |
lastmodificationby INT(11) default NULL, -- borrowernumber for the librarian who edit the suggestion for the last time |
2999 |
lastmodificationby INT(11) default NULL, -- borrowernumber for the librarian who edit the suggestion for the last time |
3000 |
lastmodificationdate date default NULL, -- date of the last modification |
3000 |
lastmodificationdate date default NULL, -- date of the last modification |
3001 |
`STATUS` varchar(10) NOT NULL default '', -- suggestion status (ASKED, CHECKED, ACCEPTED, or REJECTED) |
3001 |
`STATUS` varchar(10) NOT NULL default '', -- suggestion status (ASKED, CHECKED, ACCEPTED, or REJECTED) |
|
|
3002 |
`archived` INT(1) NOT NULL DEFAULT 0, -- is the suggestion archived? |
3002 |
`note` LONGTEXT, -- note entered on the suggestion |
3003 |
`note` LONGTEXT, -- note entered on the suggestion |
3003 |
`author` varchar(80) default NULL, -- author of the suggested item |
3004 |
`author` varchar(80) default NULL, -- author of the suggested item |
3004 |
`title` varchar(255) default NULL, -- title of the suggested item |
3005 |
`title` varchar(255) default NULL, -- title of the suggested item |
3005 |
- |
|
|