From 10f36b2722ea77c805e554a018e2c66b83ede71d Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 24 Feb 2015 14:20:31 -0300 Subject: [PATCH] Bug 13523: DBIC updates Signed-off-by: Tomas Cohen Arazi Signed-off-by: Mason James --- Koha/Schema/Result/Biblioitem.pm | 4 ++-- Koha/Schema/Result/Deletedbiblioitem.pm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/Biblioitem.pm b/Koha/Schema/Result/Biblioitem.pm index dd38e4a6d7..28a4c2af1a 100644 --- a/Koha/Schema/Result/Biblioitem.pm +++ b/Koha/Schema/Result/Biblioitem.pm @@ -211,7 +211,7 @@ __PACKAGE__->table("biblioitems"); =head2 marcxml data_type: 'longtext' - is_nullable: 0 + is_nullable: 1 =cut @@ -293,7 +293,7 @@ __PACKAGE__->add_columns( "totalissues", { data_type => "integer", is_nullable => 1 }, "marcxml", - { data_type => "longtext", is_nullable => 0 }, + { data_type => "longtext", is_nullable => 1 }, ); =head1 PRIMARY KEY diff --git a/Koha/Schema/Result/Deletedbiblioitem.pm b/Koha/Schema/Result/Deletedbiblioitem.pm index 0ea77e3f89..255e1fc3c8 100644 --- a/Koha/Schema/Result/Deletedbiblioitem.pm +++ b/Koha/Schema/Result/Deletedbiblioitem.pm @@ -210,7 +210,7 @@ __PACKAGE__->table("deletedbiblioitems"); =head2 marcxml data_type: 'longtext' - is_nullable: 0 + is_nullable: 1 =cut @@ -287,7 +287,7 @@ __PACKAGE__->add_columns( "totalissues", { data_type => "integer", is_nullable => 1 }, "marcxml", - { data_type => "longtext", is_nullable => 0 }, + { data_type => "longtext", is_nullable => 1 }, ); =head1 PRIMARY KEY -- 2.39.5