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

(-)a/Koha/Schema/Result/Aqbookseller.pm (-3 / +10 lines)
Lines 81-86 vendor phone number Link Here
81
81
82
vendor account number
82
vendor account number
83
83
84
=head2 vendor_type
85
86
  data_type: 'varchar'
87
  is_nullable: 1
88
  size: 255
89
84
=head2 notes
90
=head2 notes
85
91
86
  data_type: 'longtext'
92
  data_type: 'longtext'
Lines 199-204 __PACKAGE__->add_columns( Link Here
199
  { data_type => "varchar", is_nullable => 1, size => 30 },
205
  { data_type => "varchar", is_nullable => 1, size => 30 },
200
  "accountnumber",
206
  "accountnumber",
201
  { data_type => "longtext", is_nullable => 1 },
207
  { data_type => "longtext", is_nullable => 1 },
208
  "vendor_type",
209
  { data_type => "varchar", is_nullable => 1, size => 255 },
202
  "notes",
210
  "notes",
203
  { data_type => "longtext", is_nullable => 1 },
211
  { data_type => "longtext", is_nullable => 1 },
204
  "postal",
212
  "postal",
Lines 387-394 __PACKAGE__->has_many( Link Here
387
);
395
);
388
396
389
397
390
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
398
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-22 16:35:36
391
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qu4OqSCsEKEeJD9VtOEd4g
399
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LuGae6NSbIOPXaS7OH7Z/A
392
400
393
__PACKAGE__->add_columns(
401
__PACKAGE__->add_columns(
394
    '+active' => { is_boolean => 1 },
402
    '+active' => { is_boolean => 1 },
395
- 

Return to bug 31017