@@ -, +, @@ --- installer/data/mysql/atomicupdate/removeoldsyspref.sql | 1 - installer/data/mysql/updatedatabase.pl | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/removeoldsyspref.sql --- a/installer/data/mysql/atomicupdate/removeoldsyspref.sql +++ a/installer/data/mysql/atomicupdate/removeoldsyspref.sql @@ -1, +0,0 @@ -DELETE FROM systempreferences where variable = 'EDIInvoicesShippingBudget'; --- a/installer/data/mysql/updatedatabase.pl +++ a/installer/data/mysql/updatedatabase.pl @@ -12094,7 +12094,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { } $DBversion = "3.23.00.045"; -if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { +if ( CheckVersion($DBversion) ) { ## Holds details for vendors supplying goods by EDI $dbh->do(q{ CREATE TABLE IF NOT EXISTS vendor_edi_accounts ( @@ -12186,10 +12186,6 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { CONSTRAINT efk_branchcode FOREIGN KEY ( branchcode ) REFERENCES branches ( branchcode ) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; }); -## Syspref budget to hold shipping costs - $dbh->do(q{ - INSERT INTO systempreferences (variable, explanation, type) VALUES('EDIInvoicesShippingBudget','The budget code used to allocate shipping charges to when processing EDI Invoice messages', 'free'); - }); ## Add a permission for managing EDI $dbh->do(q{ --