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 |
- |
|
|