From 010dc2f0a943069c2ec607a6eb1a83513a3ad349 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 15 Jan 2009 15:26:20 -0600 Subject: [PATCH] holds policy followup - fix column definition Signed-off-by: Daniel Sweeney Signed-off-by: Galen Charlton --- installer/data/mysql/kohastructure.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 80e9e1958d..670539ab3a 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -684,7 +684,7 @@ DROP TABLE IF EXISTS `default_branch_circ_rules`; CREATE TABLE `default_branch_circ_rules` ( `branchcode` VARCHAR(10) NOT NULL, `maxissueqty` int(4) default NULL, - `holdallowed` int(1) default NULL, + `holdallowed` tinyint(1) default NULL, PRIMARY KEY (`branchcode`), CONSTRAINT `default_branch_circ_rules_ibfk_1` FOREIGN KEY (`branchcode`) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE -- 2.39.5