Lines 5996-6002
DROP TABLE IF EXISTS `virtualshelfcontents`;
Link Here
|
5996 |
CREATE TABLE `virtualshelfcontents` ( |
5996 |
CREATE TABLE `virtualshelfcontents` ( |
5997 |
`shelfnumber` int(11) NOT NULL DEFAULT 0 COMMENT 'foreign key linking to the virtualshelves table, defines the list that this record has been added to', |
5997 |
`shelfnumber` int(11) NOT NULL DEFAULT 0 COMMENT 'foreign key linking to the virtualshelves table, defines the list that this record has been added to', |
5998 |
`biblionumber` int(11) NOT NULL DEFAULT 0 COMMENT 'foreign key linking to the biblio table, defines the bib record that has been added to the list', |
5998 |
`biblionumber` int(11) NOT NULL DEFAULT 0 COMMENT 'foreign key linking to the biblio table, defines the bib record that has been added to the list', |
5999 |
`flags` int(11) DEFAULT NULL, |
|
|
6000 |
`dateadded` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'date and time this bib record was added to the list', |
5999 |
`dateadded` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'date and time this bib record was added to the list', |
6001 |
`borrowernumber` int(11) DEFAULT NULL COMMENT 'borrower number that created this list entry (only the first one is saved: no need for use in/as key)', |
6000 |
`borrowernumber` int(11) DEFAULT NULL COMMENT 'borrower number that created this list entry (only the first one is saved: no need for use in/as key)', |
6002 |
KEY `shelfnumber` (`shelfnumber`), |
6001 |
KEY `shelfnumber` (`shelfnumber`), |
6003 |
- |
|
|