From 80d3f7f910e11c36b5dc20535bc18faf9fbfa8a1 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 3 Nov 2020 10:57:13 +0100 Subject: [PATCH] Bug 26853: DBIC schema changes Signed-off-by: Jonathan Druart --- Koha/Schema/Result/ImportBiblio.pm | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/Koha/Schema/Result/ImportBiblio.pm b/Koha/Schema/Result/ImportBiblio.pm index 1b6c50da1d..ca4e21246a 100644 --- a/Koha/Schema/Result/ImportBiblio.pm +++ b/Koha/Schema/Result/ImportBiblio.pm @@ -48,27 +48,23 @@ __PACKAGE__->table("import_biblios"); =head2 title - data_type: 'varchar' + data_type: 'longtext' is_nullable: 1 - size: 128 =head2 author - data_type: 'varchar' + data_type: 'longtext' is_nullable: 1 - size: 80 =head2 isbn - data_type: 'varchar' + data_type: 'longtext' is_nullable: 1 - size: 30 =head2 issn - data_type: 'varchar' + data_type: 'longtext' is_nullable: 1 - size: 9 =head2 has_items @@ -88,13 +84,13 @@ __PACKAGE__->add_columns( "original_source", { data_type => "varchar", is_nullable => 1, size => 25 }, "title", - { data_type => "varchar", is_nullable => 1, size => 128 }, + { data_type => "longtext", is_nullable => 1 }, "author", - { data_type => "varchar", is_nullable => 1, size => 80 }, + { data_type => "longtext", is_nullable => 1 }, "isbn", - { data_type => "varchar", is_nullable => 1, size => 30 }, + { data_type => "longtext", is_nullable => 1 }, "issn", - { data_type => "varchar", is_nullable => 1, size => 9 }, + { data_type => "longtext", is_nullable => 1 }, "has_items", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); @@ -117,8 +113,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6dQmL78YztbxS9qXHciPTQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-11-03 09:53:04 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/nOWo4fGjdch+K0T+07cSw # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2