From 27192795d950ba77505fc3ee681ba2a3a3ee4109 Mon Sep 17 00:00:00 2001 From: Emmi Takkinen Date: Wed, 16 Jun 2021 14:54:36 +0300 Subject: [PATCH 2/3] DO NOT PUSH! Schema changes --- Koha/Schema/Result/Statistic.pm | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Koha/Schema/Result/Statistic.pm b/Koha/Schema/Result/Statistic.pm index b9911cf63f..1acbdea60c 100644 --- a/Koha/Schema/Result/Statistic.pm +++ b/Koha/Schema/Result/Statistic.pm @@ -98,7 +98,11 @@ foreign key from the borrowers table, links transaction to a specific borrower is_nullable: 1 size: 80 -foreign key from the items table, links transaction to a specific collection code +=head2 usercode + + data_type: 'varchar' + is_nullable: 1 + size: 10 =cut @@ -127,11 +131,13 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 1 }, "ccode", { data_type => "varchar", is_nullable => 1, size => 80 }, + "usercode", + { data_type => "varchar", is_nullable => 1, size => 10 }, ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OjX7bnPQw0SjrCRB2oVr1w +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-06-16 14:39:10 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x/6QwIT0aI8fDG3ahPgb1Q # You can replace this text with custom content, and it will be preserved on regeneration -- 2.25.1