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

(-)a/installer/data/mysql/atomicupdate/Bug-14723_-_Additional_delivery_notes_to_messages.perl (-2 / +3 lines)
Lines 1-6 Link Here
1
$DBversion = 'XXX';  # will be replaced by the RM
1
$DBversion = 'XXX';  # will be replaced by the RM
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do("ALTER TABLE message_queue ADD delivery_note mediumtext AFTER content_type");
3
    unless ( column_exists('message_queue', 'delivery_note') ) {
4
        $dbh->do("ALTER TABLE message_queue ADD delivery_note mediumtext AFTER content_type");
5
    }
4
6
5
    # Always end with this (adjust the bug info)
7
    # Always end with this (adjust the bug info)
6
    SetVersion( $DBversion );
8
    SetVersion( $DBversion );
7
- 

Return to bug 14723