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

(-)a/Koha/Schema/Result/ClubHoldsToPatronHold.pm (-3 / +4 lines)
Lines 50-56 __PACKAGE__->table("club_holds_to_patron_holds"); Link Here
50
=head2 error_code
50
=head2 error_code
51
51
52
  data_type: 'enum'
52
  data_type: 'enum'
53
  extra: {list => ["damaged","ageRestricted","itemAlreadyOnHold","tooManyHoldsForThisRecord","tooManyReservesToday","tooManyReserves","notReservable","cannotReserveFromOtherBranches","libraryNotFound","libraryNotPickupLocation","cannotBeTransferred"]}
53
  extra: {list => ["damaged","ageRestricted","itemAlreadyOnHold","tooManyHoldsForThisRecord","tooManyReservesToday","tooManyReserves","notReservable","cannotReserveFromOtherBranches","libraryNotFound","libraryNotPickupLocation","cannotBeTransferred","noReservesAllowed"]}
54
  is_nullable: 1
54
  is_nullable: 1
55
55
56
=head2 error_message
56
=head2 error_message
Lines 86-91 __PACKAGE__->add_columns( Link Here
86
        "libraryNotFound",
86
        "libraryNotFound",
87
        "libraryNotPickupLocation",
87
        "libraryNotPickupLocation",
88
        "cannotBeTransferred",
88
        "cannotBeTransferred",
89
        "noReservesAllowed",
89
      ],
90
      ],
90
    },
91
    },
91
    is_nullable => 1,
92
    is_nullable => 1,
Lines 159-166 __PACKAGE__->belongs_to( Link Here
159
);
160
);
160
161
161
162
162
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47
163
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 10:45:06
163
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/T626DfqUi7SnXOyieUzYw
164
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:n4et0P1PDu4WrArtnl02hg
164
165
165
sub koha_objects_class {
166
sub koha_objects_class {
166
    'Koha::Club::Hold::PatronHolds';
167
    'Koha::Club::Hold::PatronHolds';
(-)a/Koha/Schema/Result/OldReserve.pm (-3 / +4 lines)
Lines 78-83 __PACKAGE__->table("old_reserves"); Link Here
78
=head2 priority
78
=head2 priority
79
79
80
  data_type: 'smallint'
80
  data_type: 'smallint'
81
  default_value: 1
81
  is_nullable: 0
82
  is_nullable: 0
82
83
83
=head2 found
84
=head2 found
Lines 165-171 __PACKAGE__->add_columns( Link Here
165
  "reservenotes",
166
  "reservenotes",
166
  { data_type => "longtext", is_nullable => 1 },
167
  { data_type => "longtext", is_nullable => 1 },
167
  "priority",
168
  "priority",
168
  { data_type => "smallint", is_nullable => 0 },
169
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
169
  "found",
170
  "found",
170
  { data_type => "varchar", is_nullable => 1, size => 1 },
171
  { data_type => "varchar", is_nullable => 1, size => 1 },
171
  "timestamp",
172
  "timestamp",
Lines 297-304 __PACKAGE__->belongs_to( Link Here
297
);
298
);
298
299
299
300
300
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 08:36:19
301
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 10:45:06
301
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RDZP4TEaFZUexg9jVg6DbA
302
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hqwQYNYrpsAAowBg3ImchA
302
303
303
sub koha_object_class {
304
sub koha_object_class {
304
    'Koha::Old::Hold';
305
    'Koha::Old::Hold';
(-)a/Koha/Schema/Result/Reserve.pm (-4 / +4 lines)
Lines 82-87 __PACKAGE__->table("reserves"); Link Here
82
=head2 priority
82
=head2 priority
83
83
84
  data_type: 'smallint'
84
  data_type: 'smallint'
85
  default_value: 1
85
  is_nullable: 0
86
  is_nullable: 0
86
87
87
=head2 found
88
=head2 found
Lines 179-185 __PACKAGE__->add_columns( Link Here
179
  "reservenotes",
180
  "reservenotes",
180
  { data_type => "longtext", is_nullable => 1 },
181
  { data_type => "longtext", is_nullable => 1 },
181
  "priority",
182
  "priority",
182
  { data_type => "smallint", is_nullable => 0 },
183
  { data_type => "smallint", default_value => 1, is_nullable => 0 },
183
  "found",
184
  "found",
184
  { data_type => "varchar", is_nullable => 1, size => 1 },
185
  { data_type => "varchar", is_nullable => 1, size => 1 },
185
  "timestamp",
186
  "timestamp",
Lines 336-343 __PACKAGE__->belongs_to( Link Here
336
);
337
);
337
338
338
339
339
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-25 11:25:52
340
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 10:45:06
340
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8f97w2B7OZT7KP+MKelI8g
341
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0UCAvY/ZiOsjg/vWYv5rJg
341
342
342
__PACKAGE__->belongs_to(
343
__PACKAGE__->belongs_to(
343
  "item",
344
  "item",
344
- 

Return to bug 16787