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