From 06ea18730dd7fb0614552e73ce8b6a40c3da1d98 Mon Sep 17 00:00:00 2001 From: John Doe Date: Fri, 24 Oct 2025 17:09:25 +0000 Subject: [PATCH] Bug 20253: DBIC Schema [DO NOT PUSH] Signed-off-by: Kyle M Hall --- Koha/Schema/Result/VendorEdiAccount.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/VendorEdiAccount.pm b/Koha/Schema/Result/VendorEdiAccount.pm index e94c531e883..09fb503ea32 100644 --- a/Koha/Schema/Result/VendorEdiAccount.pm +++ b/Koha/Schema/Result/VendorEdiAccount.pm @@ -115,6 +115,12 @@ __PACKAGE__->table("vendor_edi_accounts"); is_foreign_key: 1 is_nullable: 1 +=head2 po_is_basketname + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -148,6 +154,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", default_value => "", is_nullable => 0, size => 256 }, "file_transport_id", { data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, + "po_is_basketname", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -240,8 +248,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-10-14 20:25:57 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kt6vdvzzxk3kOdgIwBMFrg +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-10-24 17:06:28 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Y7+7/mA6xIZ1iLkrPobCSA __PACKAGE__->add_columns( '+auto_orders' => { is_boolean => 1 }, -- 2.50.1 (Apple Git-155)