From 55fac62c8cf98e90c723815033d1d82b27258e6e Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 10 Jul 2025 17:19:00 +0100 Subject: [PATCH] Bug 20253: DBIC Schema --- Koha/Schema/Result/VendorEdiAccount.pm | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/VendorEdiAccount.pm b/Koha/Schema/Result/VendorEdiAccount.pm index 8a3d3fa79f5..418ab7390e4 100644 --- a/Koha/Schema/Result/VendorEdiAccount.pm +++ b/Koha/Schema/Result/VendorEdiAccount.pm @@ -153,6 +153,12 @@ __PACKAGE__->table("vendor_edi_accounts"); is_nullable: 0 size: 256 +=head2 po_is_basketname + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -200,6 +206,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, "plugin", { data_type => "varchar", default_value => "", is_nullable => 0, size => 256 }, + "po_is_basketname", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -272,13 +280,14 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-19 16:25:44 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jenUF3Wx7J7F5270mLQMbw +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-11 14:34:08 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xOaWr6e68TXLc0RWuL+UHw __PACKAGE__->add_columns( '+auto_orders' => { is_boolean => 1 }, '+invoices_enabled' => { is_boolean => 1 }, '+orders_enabled' => { is_boolean => 1 }, + '+po_is_basketname' => { is_boolean => 1 }, '+quotes_enabled' => { is_boolean => 1 }, '+responses_enabled' => { is_boolean => 1 }, ); -- 2.50.0