Lines 260-265
DROP TABLE IF EXISTS `additional_fields`;
Link Here
|
260 |
CREATE TABLE `additional_fields` ( |
260 |
CREATE TABLE `additional_fields` ( |
261 |
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key identifier', |
261 |
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'primary key identifier', |
262 |
`tablename` varchar(255) NOT NULL DEFAULT '' COMMENT 'tablename of the new field', |
262 |
`tablename` varchar(255) NOT NULL DEFAULT '' COMMENT 'tablename of the new field', |
|
|
263 |
`is_system` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'is this field required for system operation', |
263 |
`name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the field', |
264 |
`name` varchar(255) NOT NULL DEFAULT '' COMMENT 'name of the field', |
264 |
`authorised_value_category` varchar(32) DEFAULT NULL COMMENT 'is an authorised value category', |
265 |
`authorised_value_category` varchar(32) DEFAULT NULL COMMENT 'is an authorised value category', |
265 |
`marcfield` varchar(16) NOT NULL DEFAULT '' COMMENT 'contains the marc field to copied into the record', |
266 |
`marcfield` varchar(16) NOT NULL DEFAULT '' COMMENT 'contains the marc field to copied into the record', |
266 |
- |
|
|