Bugzilla – Attachment 13595 Details for
Bug 9030
There is no constraint on aqorders_items
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Rebased patch
patch.txt (text/plain), 2.22 KB, created by
Marcel de Rooy
on 2012-11-21 15:36:29 UTC
(
hide
)
Description:
Rebased patch
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2012-11-21 15:36:29 UTC
Size:
2.22 KB
patch
obsolete
>From ad2b00c25b5977806e0b03fa050362f3f7cdf3b2 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Thu, 8 Nov 2012 13:54:47 +0100 >Subject: [PATCH] Bug 9030: Add constraint on aqorders_items.ordernumber >Content-Type: text/plain; charset="utf-8" > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > installer/data/mysql/kohastructure.sql | 3 ++- > installer/data/mysql/updatedatabase.pl | 13 +++++++++++++ > 2 files changed, 15 insertions(+), 1 deletions(-) > >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index c0d9936..1aa9317 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -2824,7 +2824,8 @@ CREATE TABLE `aqorders_items` ( -- information on items entered in the acquisiti > `itemnumber` int(11) NOT NULL, -- the item number for this item (items.itemnumber) > `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time this order item was last touched > PRIMARY KEY (`itemnumber`), >- KEY `ordernumber` (`ordernumber`) >+ KEY `ordernumber` (`ordernumber`), >+ CONSTRAINT aqorders_items_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) ON DELETE CASCADE ON UPDATE CASCADE > ) ENGINE=InnoDB DEFAULT CHARSET=utf8; > > >diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl >index 964df0c..8e6f241 100755 >--- a/installer/data/mysql/updatedatabase.pl >+++ b/installer/data/mysql/updatedatabase.pl >@@ -6062,6 +6062,19 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { > SetVersion ($DBversion); > } > >+$DBversion = "3.09.00.XXX"; >+if (C4::Context->preference("Version") < TransformToNum($DBversion)) { >+ $dbh->do(q{ >+ DELETE from aqorders_items where ordernumber NOT IN (SELECT ordernumber FROM aqorders); >+ }); >+ $dbh->do(q{ >+ ALTER TABLE aqorders_items >+ ADD CONSTRAINT aqorders_items_ibfk_1 FOREIGN KEY (ordernumber) REFERENCES aqorders (ordernumber) >+ ON DELETE CASCADE ON UPDATE CASCADE; >+ }); >+ print "Upgrade to $DBversion done (Bug 9030: Add constraint on aqorders_items.ordernumber)\n"; >+ SetVersion ($DBversion); >+} > > =head1 FUNCTIONS > >-- >1.7.7.6 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 9030
:
13304
|
13349
| 13595