From ca2034c82036ff73882c1af836d898930eec0075 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Sun, 30 Apr 2023 21:33:28 +0000 Subject: [PATCH] Bug 30928: (QA follow-up) Schema updates Signed-off-by: Aleisha Amohia --- Koha/Schema/Result/Statistic.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Statistic.pm b/Koha/Schema/Result/Statistic.pm index e6096eae2b6..3864153324c 100644 --- a/Koha/Schema/Result/Statistic.pm +++ b/Koha/Schema/Result/Statistic.pm @@ -108,6 +108,14 @@ foreign key from the items table, links transaction to a specific collection cod foreign key from the borrowers table, links transaction to a specific borrower category +=head2 interface + + data_type: 'varchar' + is_nullable: 1 + size: 30 + +the context this action was taken in + =cut __PACKAGE__->add_columns( @@ -137,11 +145,13 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 80 }, "categorycode", { data_type => "varchar", is_nullable => 1, size => 10 }, + "interface", + { data_type => "varchar", is_nullable => 1, size => 30 }, ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-09-22 12:36:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q1L7HqO/OkyzmiUcO3c0gg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-30 21:33:05 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LlHdt2FO2c762JRF0zV72A # You can replace this text with custom content, and it will be preserved on regeneration -- 2.30.2