Bug 36051: (QA follow-up) Use IGNORE in INSERT

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
Martin Renvoize 2024-02-13 16:30:42 +00:00 committed by Katrin Fischer
parent e739db4000
commit 0ef73b5314
Signed by: kfischer
GPG key ID: 0EF6E2C03357A834

View file

@ -10,7 +10,7 @@ return {
# Do you stuffs here # Do you stuffs here
$dbh->do( $dbh->do(
q{ q{
INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
('SMSSendAdditionalOptions', '', '', 'Additional SMS::Send parameters used to send SMS messages', 'free'); ('SMSSendAdditionalOptions', '', '', 'Additional SMS::Send parameters used to send SMS messages', 'free');
} }
); );