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

(-)a/Koha/Schema/Result/VendorEdiAccount.pm (-3 / +18 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: 'varchar'
57
  is_nullable: 1
58
  size: 40
59
60
=head2 download_port
61
62
  data_type: 'varchar'
63
  is_nullable: 1
64
  size: 40
65
54
=head2 last_activity
66
=head2 last_activity
55
67
56
  data_type: 'date'
68
  data_type: 'date'
Lines 156-161 __PACKAGE__->add_columns( Link Here
156
  { data_type => "varchar", is_nullable => 1, size => 40 },
168
  { data_type => "varchar", is_nullable => 1, size => 40 },
157
  "password",
169
  "password",
158
  { data_type => "mediumtext", is_nullable => 1 },
170
  { data_type => "mediumtext", is_nullable => 1 },
171
  "upload_port",
172
  { data_type => "varchar", is_nullable => 1, size => 40 },
173
  "download_port",
174
  { data_type => "varchar", is_nullable => 1, size => 40 },
159
  "last_activity",
175
  "last_activity",
160
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
176
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
161
  "vendor_id",
177
  "vendor_id",
Lines 258-265 __PACKAGE__->belongs_to( Link Here
258
);
274
);
259
275
260
276
261
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-15 18:35:52
277
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-01-09 17:40:43
262
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:06GuQaUKF6/BO/gw3hKLmA
278
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8Vo7kFac75AN0EQQq3/CyA
263
279
264
280
265
# You can replace this text with custom code or comments, and it will be preserved on regeneration
281
# You can replace this text with custom code or comments, and it will be preserved on regeneration
266
- 

Return to bug 35724