From 3c903336cd3d9bbf0aea5d1c7a703c6f6dccd87c Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Tue, 21 Feb 2023 00:17:41 +0000 Subject: [PATCH] Bug 14367: Updated schema files --- Koha/Schema/Result/BiblioMetadata.pm | 11 +++++++++-- Koha/Schema/Result/DeletedbiblioMetadata.pm | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Koha/Schema/Result/BiblioMetadata.pm b/Koha/Schema/Result/BiblioMetadata.pm index aa1a7b25ee..5ffafa02de 100644 --- a/Koha/Schema/Result/BiblioMetadata.pm +++ b/Koha/Schema/Result/BiblioMetadata.pm @@ -59,6 +59,11 @@ __PACKAGE__->table("biblio_metadata"); default_value: current_timestamp is_nullable: 0 +=head2 history + + data_type: 'longtext' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -79,6 +84,8 @@ __PACKAGE__->add_columns( default_value => \"current_timestamp", is_nullable => 0, }, + "history", + { data_type => "longtext", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -132,8 +139,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-30 11:34:16 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FJk/YOw8Y/QRmmPPL3G5qQ +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-21 00:16:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:R+iWlj9FmE4X/VtbwKdm0g sub koha_object_class { 'Koha::Biblio::Metadata'; diff --git a/Koha/Schema/Result/DeletedbiblioMetadata.pm b/Koha/Schema/Result/DeletedbiblioMetadata.pm index 17406b9ca4..7e4b56f987 100644 --- a/Koha/Schema/Result/DeletedbiblioMetadata.pm +++ b/Koha/Schema/Result/DeletedbiblioMetadata.pm @@ -59,6 +59,11 @@ __PACKAGE__->table("deletedbiblio_metadata"); default_value: current_timestamp is_nullable: 0 +=head2 history + + data_type: 'longtext' + is_nullable: 1 + =cut __PACKAGE__->add_columns( @@ -79,6 +84,8 @@ __PACKAGE__->add_columns( default_value => \"current_timestamp", is_nullable => 0, }, + "history", + { data_type => "longtext", is_nullable => 1 }, ); =head1 PRIMARY KEY @@ -132,8 +139,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-30 11:34:16 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JCOh+FSSTgPlC8lMJOdOOA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-21 00:16:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8KWeUq/I9x894/IZgZtMZg # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1