From 5183c3273136267b917706e8512c611d294ef418 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 7 Jun 2024 16:20:14 +0000 Subject: [PATCH] Bug 37054: DO NOT PUSH - Schema updates --- Koha/Schema/Result/Branch.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Branch.pm b/Koha/Schema/Result/Branch.pm index c9d55a8182..f1d5cfcdfb 100644 --- a/Koha/Schema/Result/Branch.pm +++ b/Koha/Schema/Result/Branch.pm @@ -206,6 +206,14 @@ branch specific javascript for the OPAC branch specific css for the OPAC +=head2 branchcolor + + data_type: 'varchar' + is_nullable: 1 + size: 16 + +branch specific color + =cut __PACKAGE__->add_columns( @@ -259,6 +267,8 @@ __PACKAGE__->add_columns( { data_type => "longtext", is_nullable => 1 }, "opacusercss", { data_type => "longtext", is_nullable => 1 }, + "branchcolor", + { data_type => "varchar", is_nullable => 1, size => 16 }, ); =head1 PRIMARY KEY @@ -996,8 +1006,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-03 13:13:25 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HiH1QNlDqKcq9GeM85Pu0A +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-06-07 16:19:19 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:o4mDVGwBMW9RsoohPU5EZQ __PACKAGE__->add_columns( '+pickup_location' => { is_boolean => 1 }, -- 2.39.2