From 4a0386977e2caf94f530590aabb1a396a88764a3 Mon Sep 17 00:00:00 2001 From: Thibaud Guillot Date: Thu, 14 Nov 2024 10:15:08 +0000 Subject: [PATCH] Bug 38434: Fix to define the same structure as kohastructure.sql --- installer/data/mysql/db_revs/240600045.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/db_revs/240600045.pl b/installer/data/mysql/db_revs/240600045.pl index 16975631ab..b093e9b08f 100755 --- a/installer/data/mysql/db_revs/240600045.pl +++ b/installer/data/mysql/db_revs/240600045.pl @@ -11,7 +11,7 @@ return { if ( !column_exists( 'itemtypes', 'bookable' ) ) { $dbh->do( q{ - ALTER TABLE itemtypes ADD COLUMN bookable INT(1) DEFAULT 0 AFTER automatic_checkin + ALTER TABLE itemtypes ADD COLUMN bookable tinyint(1) NOT NULL DEFAULT 0 AFTER automatic_checkin } ); -- 2.25.1