From 89752a126d005cc763d93eb5e543b1f829bed039 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 5 May 2014 17:59:53 +0000 Subject: [PATCH] Bug 5377: (follow-up) update DBIC schema classes Signed-off-by: Galen Charlton --- Koha/Schema/Result/Biblioitem.pm | 14 ++++++-------- Koha/Schema/Result/Deletedbiblioitem.pm | 14 ++++++-------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/Koha/Schema/Result/Biblioitem.pm b/Koha/Schema/Result/Biblioitem.pm index 3c1b73494b..dd38e4a6d7 100644 --- a/Koha/Schema/Result/Biblioitem.pm +++ b/Koha/Schema/Result/Biblioitem.pm @@ -54,15 +54,13 @@ __PACKAGE__->table("biblioitems"); =head2 isbn - data_type: 'varchar' + data_type: 'mediumtext' is_nullable: 1 - size: 30 =head2 issn - data_type: 'varchar' + data_type: 'mediumtext' is_nullable: 1 - size: 9 =head2 ean @@ -234,9 +232,9 @@ __PACKAGE__->add_columns( "itemtype", { data_type => "varchar", is_nullable => 1, size => 10 }, "isbn", - { data_type => "varchar", is_nullable => 1, size => 30 }, + { data_type => "mediumtext", is_nullable => 1 }, "issn", - { data_type => "varchar", is_nullable => 1, size => 9 }, + { data_type => "mediumtext", is_nullable => 1 }, "ean", { data_type => "varchar", is_nullable => 1, size => 13 }, "publicationyear", @@ -343,8 +341,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-01-31 15:58:34 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4tm44zYP5ZPJo/xINVgHVg +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-05 17:59:34 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QE7ghWQ1JZw+IBDRwvgvSA # You can replace this text with custom content, and it will be preserved on regeneration diff --git a/Koha/Schema/Result/Deletedbiblioitem.pm b/Koha/Schema/Result/Deletedbiblioitem.pm index 7a1dc3be7b..0ea77e3f89 100644 --- a/Koha/Schema/Result/Deletedbiblioitem.pm +++ b/Koha/Schema/Result/Deletedbiblioitem.pm @@ -53,15 +53,13 @@ __PACKAGE__->table("deletedbiblioitems"); =head2 isbn - data_type: 'varchar' + data_type: 'mediumtext' is_nullable: 1 - size: 30 =head2 issn - data_type: 'varchar' + data_type: 'mediumtext' is_nullable: 1 - size: 9 =head2 ean @@ -228,9 +226,9 @@ __PACKAGE__->add_columns( "itemtype", { data_type => "varchar", is_nullable => 1, size => 10 }, "isbn", - { data_type => "varchar", is_nullable => 1, size => 30 }, + { data_type => "mediumtext", is_nullable => 1 }, "issn", - { data_type => "varchar", is_nullable => 1, size => 9 }, + { data_type => "mediumtext", is_nullable => 1 }, "ean", { data_type => "varchar", is_nullable => 1, size => 13 }, "publicationyear", @@ -305,8 +303,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("biblioitemnumber"); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-01-31 15:58:35 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mAqmzd+umMxQ/+Q5IxRoEw +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-05 17:59:34 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:S84dl2XESjQXVLR8mnjwTw # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2