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

(-)a/Koha/Schema/Result/VendorEdiAccount.pm (-3 / +10 lines)
Lines 115-120 __PACKAGE__->table("vendor_edi_accounts"); Link Here
115
  is_foreign_key: 1
115
  is_foreign_key: 1
116
  is_nullable: 1
116
  is_nullable: 1
117
117
118
=head2 po_is_basketname
119
120
  data_type: 'tinyint'
121
  default_value: 0
122
  is_nullable: 0
123
118
=cut
124
=cut
119
125
120
__PACKAGE__->add_columns(
126
__PACKAGE__->add_columns(
Lines 148-153 __PACKAGE__->add_columns( Link Here
148
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 256 },
154
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 256 },
149
  "file_transport_id",
155
  "file_transport_id",
150
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
156
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
157
  "po_is_basketname",
158
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
151
);
159
);
152
160
153
=head1 PRIMARY KEY
161
=head1 PRIMARY KEY
Lines 240-247 __PACKAGE__->belongs_to( Link Here
240
);
248
);
241
249
242
250
243
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-10-14 20:25:57
251
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-10-24 17:06:28
244
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kt6vdvzzxk3kOdgIwBMFrg
252
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Y7+7/mA6xIZ1iLkrPobCSA
245
253
246
__PACKAGE__->add_columns(
254
__PACKAGE__->add_columns(
247
    '+auto_orders'       => { is_boolean => 1 },
255
    '+auto_orders'       => { is_boolean => 1 },
248
- 

Return to bug 20253