Lines 1123-1129
CREATE TABLE `biblioitems` (
Link Here
|
1123 |
`issn` longtext DEFAULT NULL COMMENT 'ISSN (MARC21 022$a)', |
1123 |
`issn` longtext DEFAULT NULL COMMENT 'ISSN (MARC21 022$a)', |
1124 |
`ean` longtext DEFAULT NULL, |
1124 |
`ean` longtext DEFAULT NULL, |
1125 |
`publicationyear` mediumtext DEFAULT NULL, |
1125 |
`publicationyear` mediumtext DEFAULT NULL, |
1126 |
`publishercode` varchar(255) DEFAULT NULL COMMENT 'publisher (MARC21 260$b)', |
1126 |
`publishercode` text DEFAULT NULL COMMENT 'publisher (MARC21 260$b and 246$b)', |
1127 |
`volumedate` date DEFAULT NULL, |
1127 |
`volumedate` date DEFAULT NULL, |
1128 |
`volumedesc` mediumtext DEFAULT NULL COMMENT 'volume information (MARC21 362$a)', |
1128 |
`volumedesc` mediumtext DEFAULT NULL COMMENT 'volume information (MARC21 362$a)', |
1129 |
`collectiontitle` longtext DEFAULT NULL, |
1129 |
`collectiontitle` longtext DEFAULT NULL, |
Lines 1132-1142
CREATE TABLE `biblioitems` (
Link Here
|
1132 |
`editionstatement` mediumtext DEFAULT NULL, |
1132 |
`editionstatement` mediumtext DEFAULT NULL, |
1133 |
`editionresponsibility` mediumtext DEFAULT NULL, |
1133 |
`editionresponsibility` mediumtext DEFAULT NULL, |
1134 |
`timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
1134 |
`timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
1135 |
`illus` varchar(255) DEFAULT NULL COMMENT 'illustrations (MARC21 300$b)', |
1135 |
`illus` text DEFAULT NULL COMMENT 'illustrations (MARC21 300$b)', |
1136 |
`pages` varchar(255) DEFAULT NULL COMMENT 'number of pages (MARC21 300$c)', |
1136 |
`pages` text DEFAULT NULL COMMENT 'number of pages (MARC21 300$a)', |
1137 |
`notes` longtext DEFAULT NULL, |
1137 |
`notes` longtext DEFAULT NULL, |
1138 |
`size` varchar(255) DEFAULT NULL COMMENT 'material size (MARC21 300$c)', |
1138 |
`size` text DEFAULT NULL COMMENT 'material size (MARC21 300$c)', |
1139 |
`place` varchar(255) DEFAULT NULL COMMENT 'publication place (MARC21 260$a)', |
1139 |
`place` text DEFAULT NULL COMMENT 'publication place (MARC21 260$a and 264$a)', |
1140 |
`lccn` longtext DEFAULT NULL COMMENT 'library of congress control number (MARC21 010$a)', |
1140 |
`lccn` longtext DEFAULT NULL COMMENT 'library of congress control number (MARC21 010$a)', |
1141 |
`url` mediumtext DEFAULT NULL COMMENT 'url (MARC21 856$u)', |
1141 |
`url` mediumtext DEFAULT NULL COMMENT 'url (MARC21 856$u)', |
1142 |
`cn_source` varchar(10) DEFAULT NULL COMMENT 'classification source (MARC21 942$2)', |
1142 |
`cn_source` varchar(10) DEFAULT NULL COMMENT 'classification source (MARC21 942$2)', |
Lines 2526-2532
CREATE TABLE `deletedbiblioitems` (
Link Here
|
2526 |
`issn` longtext DEFAULT NULL COMMENT 'ISSN (MARC21 022$a)', |
2526 |
`issn` longtext DEFAULT NULL COMMENT 'ISSN (MARC21 022$a)', |
2527 |
`ean` longtext DEFAULT NULL, |
2527 |
`ean` longtext DEFAULT NULL, |
2528 |
`publicationyear` mediumtext DEFAULT NULL, |
2528 |
`publicationyear` mediumtext DEFAULT NULL, |
2529 |
`publishercode` varchar(255) DEFAULT NULL COMMENT 'publisher (MARC21 260$b)', |
2529 |
`publishercode` text DEFAULT NULL COMMENT 'publisher (MARC21 260$b and 264$b)', |
2530 |
`volumedate` date DEFAULT NULL, |
2530 |
`volumedate` date DEFAULT NULL, |
2531 |
`volumedesc` mediumtext DEFAULT NULL COMMENT 'volume information (MARC21 362$a)', |
2531 |
`volumedesc` mediumtext DEFAULT NULL COMMENT 'volume information (MARC21 362$a)', |
2532 |
`collectiontitle` longtext DEFAULT NULL, |
2532 |
`collectiontitle` longtext DEFAULT NULL, |
Lines 2535-2545
CREATE TABLE `deletedbiblioitems` (
Link Here
|
2535 |
`editionstatement` mediumtext DEFAULT NULL, |
2535 |
`editionstatement` mediumtext DEFAULT NULL, |
2536 |
`editionresponsibility` mediumtext DEFAULT NULL, |
2536 |
`editionresponsibility` mediumtext DEFAULT NULL, |
2537 |
`timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
2537 |
`timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
2538 |
`illus` varchar(255) DEFAULT NULL COMMENT 'illustrations (MARC21 300$b)', |
2538 |
`illus` text DEFAULT NULL COMMENT 'illustrations (MARC21 300$b)', |
2539 |
`pages` varchar(255) DEFAULT NULL COMMENT 'number of pages (MARC21 300$c)', |
2539 |
`pages` text DEFAULT NULL COMMENT 'number of pages (MARC21 300$a)', |
2540 |
`notes` longtext DEFAULT NULL, |
2540 |
`notes` longtext DEFAULT NULL, |
2541 |
`size` varchar(255) DEFAULT NULL COMMENT 'material size (MARC21 300$c)', |
2541 |
`size` text DEFAULT NULL COMMENT 'material size (MARC21 300$c)', |
2542 |
`place` varchar(255) DEFAULT NULL COMMENT 'publication place (MARC21 260$a)', |
2542 |
`place` text DEFAULT NULL COMMENT 'publication place (MARC21 260$a and 264§a)', |
2543 |
`lccn` longtext DEFAULT NULL COMMENT 'library of congress control number (MARC21 010$a)', |
2543 |
`lccn` longtext DEFAULT NULL COMMENT 'library of congress control number (MARC21 010$a)', |
2544 |
`url` mediumtext DEFAULT NULL COMMENT 'url (MARC21 856$u)', |
2544 |
`url` mediumtext DEFAULT NULL COMMENT 'url (MARC21 856$u)', |
2545 |
`cn_source` varchar(10) DEFAULT NULL COMMENT 'classification source (MARC21 942$2)', |
2545 |
`cn_source` varchar(10) DEFAULT NULL COMMENT 'classification source (MARC21 942$2)', |
2546 |
- |
|
|