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

(-)a/installer/data/mysql/atomicupdate/bug_36975.pl (-2 / +3 lines)
Lines 7-13 return { Link Here
7
        my ($args) = @_;
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
9
10
        $dbh->do(q{ALTER TABLE `marc_modification_template_actions` MODIFY COLUMN `action` enum('delete_field', 'add_field', 'update_field', 'move_field', 'copy_field', 'copy_and_replace_field', 'set_record_source') NOT NULL AFTER `ordering`;});
10
        $dbh->do(
11
            q{ALTER TABLE `marc_modification_template_actions` MODIFY COLUMN `action` enum('delete_field', 'add_field', 'update_field', 'move_field', 'copy_field', 'copy_and_replace_field', 'set_record_source') NOT NULL AFTER `ordering`;}
12
        );
11
        say $out "Added new action type 'set_record_source'";
13
        say $out "Added new action type 'set_record_source'";
12
    },
14
    },
13
};
15
};
14
- 

Return to bug 36975