From 3c981d69a4c0f476e042c6f99f3b3453817aa4c5 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 Signed-off-by: Martin Renvoize --- Koha/Schema/Result/VendorEdiAccount.pm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/VendorEdiAccount.pm b/Koha/Schema/Result/VendorEdiAccount.pm index 30298051b8d..a60e79aadf5 100644 --- a/Koha/Schema/Result/VendorEdiAccount.pm +++ b/Koha/Schema/Result/VendorEdiAccount.pm @@ -51,6 +51,16 @@ __PACKAGE__->table("vendor_edi_accounts"); data_type: 'mediumtext' is_nullable: 1 +=head2 upload_port + + data_type: 'integer' + is_nullable: 1 + +=head2 download_port + + data_type: 'integer' + is_nullable: 1 + =head2 last_activity data_type: 'date' @@ -156,6 +166,10 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 40 }, "password", { data_type => "mediumtext", is_nullable => 1 }, + "upload_port", + { data_type => "integer", is_nullable => 1 }, + "download_port", + { data_type => "integer", is_nullable => 1 }, "last_activity", { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 }, "vendor_id", @@ -258,8 +272,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-02-27 11:12:11 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jn6hGprsUf+fIQythPqruw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.43.2