Bug 21639: (follow-up) Adjust the other languages
[koha.git] / installer / data / mysql / atomicupdate / Bug_21639_add_phone_transports.perl
1 $DBversion = 'XXX';  # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q(
4         INSERT IGNORE INTO message_transports
5         (message_attribute_id,message_transport_type,is_digest,letter_module,letter_code)
6         VALUES
7         (2, 'phone', 0, 'circulation', 'PREDUE'),
8         (2, 'phone', 1, 'circulation', 'PREDUEDGST'),
9         (4, 'phone', 0, 'reserves',    'HOLD')
10         ));
11     SetVersion( $DBversion );
12     print "Upgrade to $DBversion done (Bug 21639 - Add phone transports by default)\n";
13 }