From 39fb77b5bee43ec55601ea92502b32698b706c02 Mon Sep 17 00:00:00 2001 From: Alex Buckley Date: Tue, 9 Jan 2024 18:10:45 +0000 Subject: [PATCH] Bug 35724: DBIX Schema file changes Sponsored-by: Waikato Institute of Technology, New Zealand --- Koha/Schema/Result/VendorEdiAccount.pm | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/VendorEdiAccount.pm b/Koha/Schema/Result/VendorEdiAccount.pm index 30298051b8d..94dd65b3d13 100644 --- a/Koha/Schema/Result/VendorEdiAccount.pm +++ b/Koha/Schema/Result/VendorEdiAccount.pm @@ -51,6 +51,18 @@ __PACKAGE__->table("vendor_edi_accounts"); data_type: 'mediumtext' is_nullable: 1 +=head2 upload_port + + data_type: 'varchar' + is_nullable: 1 + size: 40 + +=head2 download_port + + data_type: 'varchar' + is_nullable: 1 + size: 40 + =head2 last_activity data_type: 'date' @@ -156,6 +168,10 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 40 }, "password", { data_type => "mediumtext", is_nullable => 1 }, + "upload_port", + { data_type => "varchar", is_nullable => 1, size => 40 }, + "download_port", + { data_type => "varchar", is_nullable => 1, size => 40 }, "last_activity", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "vendor_id", @@ -258,8 +274,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-15 18:35:52 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:06GuQaUKF6/BO/gw3hKLmA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-01-09 17:40:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8Vo7kFac75AN0EQQq3/CyA # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.20.1