From 642bb2dd37b679c5fb45f4c5be8e4d5a16271810 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 Signed-off-by: Indranil Das Gupta (L2C2 Technologies) --- 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 6683125..9d6e2ce 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