From 66ddaa01312d6f74262f840160ccd54207fb0baa Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 19 Apr 2024 16:26:03 +0000 Subject: [PATCH] Bug 35724: DBIC schema update Signed-off-by: Katrin Fischer --- 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 30298051b8..27e52b8477 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-04-19 16:25:44 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jenUF3Wx7J7F5270mLQMbw # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.39.2