From 46e52be11ea6eb120ba391fc08322b6d52834857 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 6 Jun 2015 14:34:57 +0200 Subject: [PATCH] Bug 14350: Missing statement in kohastructure.sql - DROP TABLE IF EXISTS borrower_sync Reported by Jonathan on bug 11401: DROP TABLE IF EXISTS borrower_sync; is missing in installer/data/mysql/kohastructure.sql To test: - Run the web installer and confirm all tables are created correctly --- installer/data/mysql/kohastructure.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index c41710c..e04618b 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -361,6 +361,7 @@ CREATE TABLE `branch_item_rules` ( -- information entered in the circulation and -- Table structure for table borrower_sync -- +DROP TABLE IF EXISTS `borrower_sync`; CREATE TABLE borrower_sync ( borrowersyncid int(11) NOT NULL AUTO_INCREMENT, -- Primary key, unique identifier borrowernumber int(11) NOT NULL, -- Connects data about synchronisations to a borrower -- 1.9.1