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