View | Details | Raw Unified | Return to bug 15095
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 3450-3456 CREATE TABLE IF NOT EXISTS marc_modification_template_actions ( Link Here
3450
  mmta_id int(11) NOT NULL AUTO_INCREMENT,
3450
  mmta_id int(11) NOT NULL AUTO_INCREMENT,
3451
  template_id int(11) NOT NULL,
3451
  template_id int(11) NOT NULL,
3452
  ordering int(3) NOT NULL,
3452
  ordering int(3) NOT NULL,
3453
  action enum('delete_field','update_field','move_field','copy_field') NOT NULL,
3453
  action ENUM('delete_field','update_field','move_field','copy_field','copy_and_replace_field') NOT NULL,
3454
  field_number smallint(6) NOT NULL DEFAULT '0',
3454
  field_number smallint(6) NOT NULL DEFAULT '0',
3455
  from_field varchar(3) NOT NULL,
3455
  from_field varchar(3) NOT NULL,
3456
  from_subfield varchar(1) DEFAULT NULL,
3456
  from_subfield varchar(1) DEFAULT NULL,
(-)a/installer/data/mysql/updatedatabase.pl (-1 / +1 lines)
Lines 10837-10842 if ( CheckVersion($DBversion) ) { Link Here
10837
        ALTER TABLE marc_modification_template_actions
10837
        ALTER TABLE marc_modification_template_actions
10838
        MODIFY COLUMN action
10838
        MODIFY COLUMN action
10839
            ENUM('delete_field','update_field','move_field','copy_field','copy_and_replace_field')
10839
            ENUM('delete_field','update_field','move_field','copy_field','copy_and_replace_field')
10840
            NOT NULL
10840
    });
10841
    });
10841
    print "Upgrade to $DBversion done (Bug 14098: Regression in Marc Modification Templates)\n";
10842
    print "Upgrade to $DBversion done (Bug 14098: Regression in Marc Modification Templates)\n";
10842
    SetVersion($DBversion);
10843
    SetVersion($DBversion);
10843
- 

Return to bug 15095