From 491d4e48104edf3714474657936dd2b551141c2f Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 5 May 2023 15:00:09 +0100 Subject: [PATCH] Bug 32721: DBIC Schema update Update after field change --- Koha/Schema/Result/Branch.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Koha/Schema/Result/Branch.pm b/Koha/Schema/Result/Branch.pm index 3304ac14f1..463a5c0f63 100644 --- a/Koha/Schema/Result/Branch.pm +++ b/Koha/Schema/Result/Branch.pm @@ -192,14 +192,14 @@ the ability to act as a pickup location whether this library should show in the opac -=head2 userjs +=head2 opacuserjs data_type: 'longtext' is_nullable: 1 branch specific javascript for the OPAC -=head2 usercss +=head2 opacusercss data_type: 'longtext' is_nullable: 1 @@ -255,9 +255,9 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 1, is_nullable => 0 }, "public", { data_type => "tinyint", default_value => 1, is_nullable => 0 }, - "userjs", + "opacuserjs", { data_type => "longtext", is_nullable => 1 }, - "usercss", + "opacusercss", { data_type => "longtext", is_nullable => 1 }, ); @@ -936,8 +936,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-01-26 15:44:39 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:V2cUJxcsWRSu4nyO3S6C4Q +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-05 13:59:09 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HIFh/XIWUlQIs2SJMW/yVQ __PACKAGE__->add_columns( '+pickup_location' => { is_boolean => 1 }, -- 2.40.1