From b57aaed3fffeb4017dbde770bd30cb4ea5a74097 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 17 Jun 2019 08:30:13 +0100 Subject: [PATCH] Bug 10215: (RM follow-up) Rebuid DBIC classes Signed-off-by: Martin Renvoize (cherry picked from commit a3cf29c5f714b5888718885f5a0cf2576a6cb5be) Signed-off-by: Fridolin Somers --- Koha/Schema/Result/Subscriptionhistory.pm | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/Koha/Schema/Result/Subscriptionhistory.pm b/Koha/Schema/Result/Subscriptionhistory.pm index b15044a0df..9a68222ffe 100644 --- a/Koha/Schema/Result/Subscriptionhistory.pm +++ b/Koha/Schema/Result/Subscriptionhistory.pm @@ -59,17 +59,13 @@ __PACKAGE__->table("subscriptionhistory"); =head2 opacnote - data_type: 'varchar' - default_value: (empty string) - is_nullable: 0 - size: 150 + data_type: 'longtext' + is_nullable: 1 =head2 librariannote - data_type: 'varchar' - default_value: (empty string) - is_nullable: 0 - size: 150 + data_type: 'longtext' + is_nullable: 1 =cut @@ -87,9 +83,9 @@ __PACKAGE__->add_columns( "recievedlist", { data_type => "longtext", is_nullable => 0 }, "opacnote", - { data_type => "varchar", default_value => "", is_nullable => 0, size => 150 }, + { data_type => "longtext", is_nullable => 1 }, "librariannote", - { data_type => "varchar", default_value => "", is_nullable => 0, size => 150 }, + { data_type => "longtext", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -105,8 +101,8 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key("subscriptionid"); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+cXluRE1oKiCGOgwq1bhJw +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-06-17 07:24:39 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SK33dc7lx/rDGX3tiR84ww # You can replace this text with custom content, and it will be preserved on regeneration -- 2.39.2