View | Details | Raw Unified | Return to bug 35724
Collapse All | Expand All

(-)a/Koha/Schema/Result/VendorEdiAccount.pm (-3 / +16 lines)
Lines 51-56 __PACKAGE__->table("vendor_edi_accounts"); Link Here
51
  data_type: 'mediumtext'
51
  data_type: 'mediumtext'
52
  is_nullable: 1
52
  is_nullable: 1
53
53
54
=head2 upload_port
55
56
  data_type: 'integer'
57
  is_nullable: 1
58
59
=head2 download_port
60
61
  data_type: 'integer'
62
  is_nullable: 1
63
54
=head2 last_activity
64
=head2 last_activity
55
65
56
  data_type: 'date'
66
  data_type: 'date'
Lines 156-161 __PACKAGE__->add_columns( Link Here
156
  { data_type => "varchar", is_nullable => 1, size => 40 },
166
  { data_type => "varchar", is_nullable => 1, size => 40 },
157
  "password",
167
  "password",
158
  { data_type => "mediumtext", is_nullable => 1 },
168
  { data_type => "mediumtext", is_nullable => 1 },
169
  "upload_port",
170
  { data_type => "integer", is_nullable => 1 },
171
  "download_port",
172
  { data_type => "integer", is_nullable => 1 },
159
  "last_activity",
173
  "last_activity",
160
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
174
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
161
  "vendor_id",
175
  "vendor_id",
Lines 258-265 __PACKAGE__->belongs_to( Link Here
258
);
272
);
259
273
260
274
261
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-15 18:35:52
275
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-02-27 11:12:11
262
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:06GuQaUKF6/BO/gw3hKLmA
276
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jn6hGprsUf+fIQythPqruw
263
277
264
278
265
# You can replace this text with custom code or comments, and it will be preserved on regeneration
279
# You can replace this text with custom code or comments, and it will be preserved on regeneration
266
- 

Return to bug 35724