From a25842a5825929d2348c995d19bf0719bcb5d370 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 21 Dec 2023 16:04:48 +0000 Subject: [PATCH] Bug 32435: DBIC Schema dump --- Koha/Schema/Result/TicketUpdate.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/TicketUpdate.pm b/Koha/Schema/Result/TicketUpdate.pm index bc8a6caf42c..89718dc712b 100644 --- a/Koha/Schema/Result/TicketUpdate.pm +++ b/Koha/Schema/Result/TicketUpdate.pm @@ -72,6 +72,14 @@ date and time this update was logged update message content +=head2 status + + data_type: 'varchar' + is_nullable: 1 + size: 80 + +status of ticket at this update + =cut __PACKAGE__->add_columns( @@ -97,6 +105,8 @@ __PACKAGE__->add_columns( }, "message", { data_type => "text", is_nullable => 0 }, + "status", + { data_type => "varchar", is_nullable => 1, size => 80 }, ); =head1 PRIMARY KEY @@ -144,8 +154,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-24 18:31:28 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8YG3jhlqbHWptc28pvBmrg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-12-21 16:04:39 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mZE5yetnaH+RbAWJLdM56Q __PACKAGE__->add_columns( '+public' => { is_boolean => 1 }, ); -- 2.43.0