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

(-)a/Koha/Schema/Result/VendorEdiAccount.pm (-41 / +10 lines)
Lines 34-64 __PACKAGE__->table("vendor_edi_accounts"); Link Here
34
  data_type: 'mediumtext'
34
  data_type: 'mediumtext'
35
  is_nullable: 0
35
  is_nullable: 0
36
36
37
=head2 host
37
=head2 download_sftp_server_id
38
39
  data_type: 'varchar'
40
  is_nullable: 1
41
  size: 40
42
43
=head2 username
44
45
  data_type: 'varchar'
46
  is_nullable: 1
47
  size: 40
48
49
=head2 password
50
51
  data_type: 'mediumtext'
52
  is_nullable: 1
53
54
=head2 upload_port
55
38
56
  data_type: 'integer'
39
  data_type: 'integer'
40
  is_foreign_key: 1
57
  is_nullable: 1
41
  is_nullable: 1
58
42
59
=head2 download_port
43
=head2 upload_sftp_server_id
60
44
61
  data_type: 'integer'
45
  data_type: 'integer'
46
  is_foreign_key: 1
62
  is_nullable: 1
47
  is_nullable: 1
63
48
64
=head2 last_activity
49
=head2 last_activity
Lines 103-115 __PACKAGE__->table("vendor_edi_accounts"); Link Here
103
  is_nullable: 1
88
  is_nullable: 1
104
  size: 3
89
  size: 3
105
90
106
=head2 transport
107
108
  data_type: 'varchar'
109
  default_value: 'FTP'
110
  is_nullable: 1
111
  size: 6
112
113
=head2 quotes_enabled
91
=head2 quotes_enabled
114
92
115
  data_type: 'tinyint'
93
  data_type: 'tinyint'
Lines 160-175 __PACKAGE__->add_columns( Link Here
160
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
138
  { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
161
  "description",
139
  "description",
162
  { data_type => "mediumtext", is_nullable => 0 },
140
  { data_type => "mediumtext", is_nullable => 0 },
163
  "host",
141
  "download_sftp_server_id",
164
  { data_type => "varchar", is_nullable => 1, size => 40 },
142
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
165
  "username",
143
  "upload_sftp_server_id",
166
  { data_type => "varchar", is_nullable => 1, size => 40 },
144
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
167
  "password",
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 },
173
  "last_activity",
145
  "last_activity",
174
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
146
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
175
  "vendor_id",
147
  "vendor_id",
Lines 184-191 __PACKAGE__->add_columns( Link Here
184
  { data_type => "varchar", default_value => "EUR", is_nullable => 1, size => 3 },
156
  { data_type => "varchar", default_value => "EUR", is_nullable => 1, size => 3 },
185
  "id_code_qualifier",
157
  "id_code_qualifier",
186
  { data_type => "varchar", default_value => 14, is_nullable => 1, size => 3 },
158
  { data_type => "varchar", default_value => 14, is_nullable => 1, size => 3 },
187
  "transport",
188
  { data_type => "varchar", default_value => "FTP", is_nullable => 1, size => 6 },
189
  "quotes_enabled",
159
  "quotes_enabled",
190
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
160
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
191
  "invoices_enabled",
161
  "invoices_enabled",
Lines 272-279 __PACKAGE__->belongs_to( Link Here
272
);
242
);
273
243
274
244
275
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-19 16:25:44
245
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-09-23 15:01:48
276
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jenUF3Wx7J7F5270mLQMbw
246
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fM9hmuOumA5SmcuhE5AN8w
277
247
278
__PACKAGE__->add_columns(
248
__PACKAGE__->add_columns(
279
    '+auto_orders'       => { is_boolean => 1 },
249
    '+auto_orders'       => { is_boolean => 1 },
280
- 

Return to bug 38489