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

(-)a/Koha/Schema/Result/AccountCreditType.pm (-2 / +2 lines)
Lines 113-120 __PACKAGE__->has_many( Link Here
113
);
113
);
114
114
115
115
116
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-20 14:48:55
116
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hdxcXxCqIDxwfSHjSr0VUg
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SDemZxSu5o7YLYQx7QRH4g
118
118
119
__PACKAGE__->add_columns(
119
__PACKAGE__->add_columns(
120
    '+is_system' => { is_boolean => 1 }
120
    '+is_system' => { is_boolean => 1 }
(-)a/Koha/Schema/Result/Accountline.pm (-2 / +2 lines)
Lines 367-374 __PACKAGE__->belongs_to( Link Here
367
);
367
);
368
368
369
369
370
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-19 09:20:20
370
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
371
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BuE4CYsSH4BwXZoQKE2MWw
371
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QUZmegcuDuFJKXSwF31qjQ
372
372
373
sub koha_objects_class {
373
sub koha_objects_class {
374
    'Koha::Account::Lines';
374
    'Koha::Account::Lines';
(-)a/Koha/Schema/Result/AuthorisedValue.pm (-2 / +2 lines)
Lines 145-152 __PACKAGE__->has_many( Link Here
145
);
145
);
146
146
147
147
148
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-02-22 14:32:48
148
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
149
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hDlebhEn+f+thqwBo/LOqQ
149
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LGi6IGCx+jfYlwqmMfB95Q
150
150
151
151
152
# You can replace this text with custom code or comments, and it will be preserved on regeneration
152
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/AuthorisedValueCategory.pm (-2 / +2 lines)
Lines 97-104 __PACKAGE__->has_many( Link Here
97
);
97
);
98
98
99
99
100
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2016-08-30 11:59:31
100
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
101
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6vToj9pUcIv8Jio38rNE4g
101
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ejnbmrYwAsc/X/8oFnkZdA
102
102
103
sub koha_objects_class {
103
sub koha_objects_class {
104
    'Koha::AuthorisedValueCategories';
104
    'Koha::AuthorisedValueCategories';
(-)a/Koha/Schema/Result/Biblio.pm (-2 / +2 lines)
Lines 406-413 __PACKAGE__->has_many( Link Here
406
);
406
);
407
407
408
408
409
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47
409
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
410
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:otCex8qzJmZyc+JXpKNdpQ
410
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:LG3thKoImJHGEQq76dUI8A
411
411
412
412
413
__PACKAGE__->has_one(
413
__PACKAGE__->has_one(
(-)a/Koha/Schema/Result/BiblioMetadata.pm (-2 / +2 lines)
Lines 132-139 __PACKAGE__->belongs_to( Link Here
132
);
132
);
133
133
134
134
135
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-30 11:34:16
135
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
136
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FJk/YOw8Y/QRmmPPL3G5qQ
136
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VXoC4vLkeDm0VWPkEfwMIg
137
137
138
sub koha_object_class {
138
sub koha_object_class {
139
    'Koha::Biblio::Metadata';
139
    'Koha::Biblio::Metadata';
(-)a/Koha/Schema/Result/Borrower.pm (-10 / +10 lines)
Lines 712-718 __PACKAGE__->add_unique_constraint("userid", ["userid"]); Link Here
712
712
713
=head1 RELATIONS
713
=head1 RELATIONS
714
714
715
=head2 accountlines
715
=head2 accountlines_borrowernumbers
716
716
717
Type: has_many
717
Type: has_many
718
718
Lines 721-727 Related object: L<Koha::Schema::Result::Accountline> Link Here
721
=cut
721
=cut
722
722
723
__PACKAGE__->has_many(
723
__PACKAGE__->has_many(
724
  "accountlines",
724
  "accountlines_borrowernumbers",
725
  "Koha::Schema::Result::Accountline",
725
  "Koha::Schema::Result::Accountline",
726
  { "foreign.borrowernumber" => "self.borrowernumber" },
726
  { "foreign.borrowernumber" => "self.borrowernumber" },
727
  { cascade_copy => 0, cascade_delete => 0 },
727
  { cascade_copy => 0, cascade_delete => 0 },
Lines 1192-1198 __PACKAGE__->has_many( Link Here
1192
  { cascade_copy => 0, cascade_delete => 0 },
1192
  { cascade_copy => 0, cascade_delete => 0 },
1193
);
1193
);
1194
1194
1195
=head2 messages
1195
=head2 messages_borrowernumbers
1196
1196
1197
Type: has_many
1197
Type: has_many
1198
1198
Lines 1201-1213 Related object: L<Koha::Schema::Result::Message> Link Here
1201
=cut
1201
=cut
1202
1202
1203
__PACKAGE__->has_many(
1203
__PACKAGE__->has_many(
1204
  "messages",
1204
  "messages_borrowernumbers",
1205
  "Koha::Schema::Result::Message",
1205
  "Koha::Schema::Result::Message",
1206
  { "foreign.manager_id" => "self.borrowernumber" },
1206
  { "foreign.borrowernumber" => "self.borrowernumber" },
1207
  { cascade_copy => 0, cascade_delete => 0 },
1207
  { cascade_copy => 0, cascade_delete => 0 },
1208
);
1208
);
1209
1209
1210
=head2 messages_borrowernumbers
1210
=head2 messages_managers
1211
1211
1212
Type: has_many
1212
Type: has_many
1213
1213
Lines 1216-1224 Related object: L<Koha::Schema::Result::Message> Link Here
1216
=cut
1216
=cut
1217
1217
1218
__PACKAGE__->has_many(
1218
__PACKAGE__->has_many(
1219
  "messages_borrowernumbers",
1219
  "messages_managers",
1220
  "Koha::Schema::Result::Message",
1220
  "Koha::Schema::Result::Message",
1221
  { "foreign.borrowernumber" => "self.borrowernumber" },
1221
  { "foreign.manager_id" => "self.borrowernumber" },
1222
  { cascade_copy => 0, cascade_delete => 0 },
1222
  { cascade_copy => 0, cascade_delete => 0 },
1223
);
1223
);
1224
1224
Lines 1673-1680 Composing rels: L</aqorder_users> -> ordernumber Link Here
1673
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1673
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1674
1674
1675
1675
1676
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-24 12:04:30
1676
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
1677
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Lc2beHgnH2egLaVzXEcLPg
1677
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QOoTQB2GgXJFG8T8yyeg9Q
1678
1678
1679
__PACKAGE__->add_columns(
1679
__PACKAGE__->add_columns(
1680
    '+anonymized'    => { is_boolean => 1 },
1680
    '+anonymized'    => { is_boolean => 1 },
(-)a/Koha/Schema/Result/BorrowerAttributeType.pm (-2 / +2 lines)
Lines 162-169 __PACKAGE__->has_many( Link Here
162
);
162
);
163
163
164
164
165
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-25 20:32:12
165
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
166
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gsPR8PuUUZHFUkr3MIbTpw
166
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GoNGZkKiYKd2X+vito/HCA
167
167
168
sub koha_object_class {
168
sub koha_object_class {
169
    'Koha::Patron::Attribute::Type';
169
    'Koha::Patron::Attribute::Type';
(-)a/Koha/Schema/Result/BorrowerModification.pm (-2 / +2 lines)
Lines 610-617 __PACKAGE__->add_columns( Link Here
610
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
610
__PACKAGE__->set_primary_key("verification_token", "borrowernumber");
611
611
612
612
613
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-07-22 16:54:42
613
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
614
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jkZUTN+mGIdp8ySV0BYNTw
614
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fMBabHyFmDXAEQFv6Bsm4w
615
615
616
sub koha_object_class {
616
sub koha_object_class {
617
    'Koha::Patron::Modification';
617
    'Koha::Patron::Modification';
(-)a/Koha/Schema/Result/BorrowerRelationship.pm (-2 / +2 lines)
Lines 126-133 __PACKAGE__->belongs_to( Link Here
126
);
126
);
127
127
128
128
129
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-08-20 15:14:37
129
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
130
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ZymvWAn9Nzfuh1lExUIhIg
130
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:NQlpK1t1omNX/Ql39jcbbw
131
131
132
sub koha_objects_class {
132
sub koha_objects_class {
133
    'Koha::Patron::Relationships';
133
    'Koha::Patron::Relationships';
(-)a/Koha/Schema/Result/Branch.pm (-2 / +2 lines)
Lines 744-751 __PACKAGE__->has_many( Link Here
744
);
744
);
745
745
746
746
747
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-25 09:27:24
747
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
748
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r2wn2GewgIc5+ShIdgmd9g
748
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KiatEkf/SDEQvzWSmUUHVw
749
749
750
__PACKAGE__->add_columns(
750
__PACKAGE__->add_columns(
751
    '+pickup_location' => { is_boolean => 1 }
751
    '+pickup_location' => { is_boolean => 1 }
(-)a/Koha/Schema/Result/Category.pm (-2 / +2 lines)
Lines 266-273 __PACKAGE__->has_many( Link Here
266
);
266
);
267
267
268
268
269
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-04-12 02:43:58
269
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
270
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7rwTH9HuxcdRCBP/bj0d/A
270
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:emmgLFFaAZ3y83lA9PdAyw
271
271
272
sub koha_object_class {
272
sub koha_object_class {
273
    'Koha::Patron::Category';
273
    'Koha::Patron::Category';
(-)a/Koha/Schema/Result/Club.pm (-2 / +2 lines)
Lines 204-211 __PACKAGE__->belongs_to( Link Here
204
);
204
);
205
205
206
206
207
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47
207
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
208
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WbB7PSSU4xaszsKe9Eacqw
208
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wdoPL1hflfu05PHzcG6cDw
209
209
210
210
211
# You can replace this text with custom content, and it will be preserved on regeneration
211
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Currency.pm (-2 / +2 lines)
Lines 158-165 __PACKAGE__->has_many( Link Here
158
);
158
);
159
159
160
160
161
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-01 14:23:58
161
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
162
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PnJEcCgrM1Edf99phWFdyQ
162
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AMajOkN1HncSUU6vuR6VrA
163
163
164
164
165
sub koha_object_class {
165
sub koha_object_class {
(-)a/Koha/Schema/Result/Deletedbiblio.pm (-2 / +2 lines)
Lines 181-188 __PACKAGE__->has_many( Link Here
181
);
181
);
182
182
183
183
184
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-08-05 13:53:34
184
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FQaznWmkfR2Ge5NG8lDmSw
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jzFGAgTc4Rn6VJlgdR4x9Q
186
186
187
sub koha_objects_class {
187
sub koha_objects_class {
188
    'Koha::Old::Biblios';
188
    'Koha::Old::Biblios';
(-)a/Koha/Schema/Result/DeletedbiblioMetadata.pm (-2 / +2 lines)
Lines 132-139 __PACKAGE__->belongs_to( Link Here
132
);
132
);
133
133
134
134
135
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-01-30 11:34:16
135
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
136
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JCOh+FSSTgPlC8lMJOdOOA
136
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:B36q6B0UrBDaOu/XlFDH6g
137
137
138
138
139
# You can replace this text with custom code or comments, and it will be preserved on regeneration
139
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Desk.pm (-2 / +17 lines)
Lines 83-91 __PACKAGE__->belongs_to( Link Here
83
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
83
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
84
);
84
);
85
85
86
=head2 reserves
86
87
87
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2019-10-02 13:43:57
88
Type: has_many
88
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:IklOycKlChqv9Tftm8rjqA
89
90
Related object: L<Koha::Schema::Result::Reserve>
91
92
=cut
93
94
__PACKAGE__->has_many(
95
  "reserves",
96
  "Koha::Schema::Result::Reserve",
97
  { "foreign.desk_id" => "self.desk_id" },
98
  { cascade_copy => 0, cascade_delete => 0 },
99
);
100
101
102
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
103
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jbvsjPOwykEQfDiLDovvpQ
89
104
90
105
91
# You can replace this text with custom code or comments, and it will be preserved on regeneration
106
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Issue.pm (-2 / +2 lines)
Lines 264-271 __PACKAGE__->might_have( Link Here
264
);
264
);
265
265
266
266
267
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-31 12:18:38
267
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
268
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QVmFa5b0Pe5OhUI92n9kzQ
268
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nfg4K8T5zpHr7Zgm29otKA
269
269
270
__PACKAGE__->add_columns(
270
__PACKAGE__->add_columns(
271
    '+auto_renew'      => { is_boolean => 1 },
271
    '+auto_renew'      => { is_boolean => 1 },
(-)a/Koha/Schema/Result/Item.pm (-2 / +2 lines)
Lines 746-753 __PACKAGE__->has_many( Link Here
746
);
746
);
747
747
748
748
749
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-02-17 10:42:24
749
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
750
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CcrMhgq+PQ1MHV6jZEN8wA
750
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zcmzJv7gFXTljKHPfx3OJQ
751
751
752
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
752
__PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" );
753
753
(-)a/Koha/Schema/Result/Itemtype.pm (-2 / +2 lines)
Lines 243-250 __PACKAGE__->has_many( Link Here
243
);
243
);
244
244
245
245
246
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-09 17:13:18
246
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
247
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7ojvTzsDvdHPAJMwJrAZ7A
247
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:i370mlHWFs3mr5yxrUR/Xw
248
248
249
__PACKAGE__->add_columns(
249
__PACKAGE__->add_columns(
250
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
250
    '+rentalcharge_hourly_calendar' => { is_boolean => 1 },
(-)a/Koha/Schema/Result/OldReserve.pm (-2 / +9 lines)
Lines 52-57 __PACKAGE__->table("old_reserves"); Link Here
52
  is_nullable: 1
52
  is_nullable: 1
53
  size: 10
53
  size: 10
54
54
55
=head2 desk_id
56
57
  data_type: 'integer'
58
  is_nullable: 1
59
55
=head2 notificationdate
60
=head2 notificationdate
56
61
57
  data_type: 'date'
62
  data_type: 'date'
Lines 157-162 __PACKAGE__->add_columns( Link Here
157
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
162
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
158
  "branchcode",
163
  "branchcode",
159
  { data_type => "varchar", is_nullable => 1, size => 10 },
164
  { data_type => "varchar", is_nullable => 1, size => 10 },
165
  "desk_id",
166
  { data_type => "integer", is_nullable => 1 },
160
  "notificationdate",
167
  "notificationdate",
161
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
168
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
162
  "reminderdate",
169
  "reminderdate",
Lines 298-305 __PACKAGE__->belongs_to( Link Here
298
);
305
);
299
306
300
307
301
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 12:43:15
308
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
302
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4vMUC/1kSr3vgQ7n0Pmuug
309
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dRD8PbaSPOHM1ExXSsGi5w
303
310
304
sub koha_object_class {
311
sub koha_object_class {
305
    'Koha::Old::Hold';
312
    'Koha::Old::Hold';
(-)a/Koha/Schema/Result/Overduerule.pm (-2 / +2 lines)
Lines 171-178 __PACKAGE__->has_many( Link Here
171
);
171
);
172
172
173
173
174
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-01-06 12:00:28
174
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
175
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Opfa1YZ3IeQRRbyrbKAkNQ
175
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Py8B2ZGP++ih+jZR6Xl6NQ
176
176
177
177
178
# You can replace this text with custom content, and it will be preserved on regeneration
178
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Reserve.pm (-2 / +30 lines)
Lines 56-61 __PACKAGE__->table("reserves"); Link Here
56
  is_nullable: 1
56
  is_nullable: 1
57
  size: 10
57
  size: 10
58
58
59
=head2 desk_id
60
61
  data_type: 'integer'
62
  is_foreign_key: 1
63
  is_nullable: 1
64
59
=head2 notificationdate
65
=head2 notificationdate
60
66
61
  data_type: 'date'
67
  data_type: 'date'
Lines 171-176 __PACKAGE__->add_columns( Link Here
171
  },
177
  },
172
  "branchcode",
178
  "branchcode",
173
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
179
  { data_type => "varchar", is_foreign_key => 1, is_nullable => 1, size => 10 },
180
  "desk_id",
181
  { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
174
  "notificationdate",
182
  "notificationdate",
175
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
183
  { data_type => "date", datetime_undef_if_invalid => 1, is_nullable => 1 },
176
  "reminderdate",
184
  "reminderdate",
Lines 296-301 __PACKAGE__->has_many( Link Here
296
  { cascade_copy => 0, cascade_delete => 0 },
304
  { cascade_copy => 0, cascade_delete => 0 },
297
);
305
);
298
306
307
=head2 desk
308
309
Type: belongs_to
310
311
Related object: L<Koha::Schema::Result::Desk>
312
313
=cut
314
315
__PACKAGE__->belongs_to(
316
  "desk",
317
  "Koha::Schema::Result::Desk",
318
  { desk_id => "desk_id" },
319
  {
320
    is_deferrable => 1,
321
    join_type     => "LEFT",
322
    on_delete     => "CASCADE",
323
    on_update     => "CASCADE",
324
  },
325
);
326
299
=head2 itemnumber
327
=head2 itemnumber
300
328
301
Type: belongs_to
329
Type: belongs_to
Lines 337-344 __PACKAGE__->belongs_to( Link Here
337
);
365
);
338
366
339
367
340
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-18 12:43:15
368
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
341
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VH7h5kYo9WhlGobXb3N3Jg
369
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:X/nQMaDCvtHloV4rqGdz3Q
342
370
343
__PACKAGE__->belongs_to(
371
__PACKAGE__->belongs_to(
344
  "item",
372
  "item",
(-)a/Koha/Schema/Result/SearchField.pm (-2 / +2 lines)
Lines 149-156 __PACKAGE__->has_many( Link Here
149
);
149
);
150
150
151
151
152
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-02 12:47:22
152
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:42:51
153
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EbUa4eprgxeUkoOUiXO/Cg
153
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gHryT3ta34D2l5Md2G7VUw
154
154
155
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
155
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
156
156
(-)a/Koha/Schema/Result/SearchMarcToField.pm (-2 / +2 lines)
Lines 128-135 __PACKAGE__->belongs_to( Link Here
128
);
128
);
129
129
130
130
131
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-02 12:47:22
131
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:42:51
132
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9mqZ/zrii+Fv+k+eQNHYUw
132
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hzF/79JyvAlyw3iMq5j0KA
133
133
134
134
135
# You can replace this text with custom code or comments, and it will be preserved on regeneration
135
# You can replace this text with custom code or comments, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/Serial.pm (-3 / +2 lines)
Lines 179-186 __PACKAGE__->has_many( Link Here
179
);
179
);
180
180
181
181
182
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:54
182
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-26 17:44:43
183
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:sRygXoIOnqpdk0lqVMcBdA
183
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wqe/1PV/rfs19gHW2/04sw
184
184
185
185
186
# You can replace this text with custom code or comments, and it will be preserved on regeneration
186
# You can replace this text with custom code or comments, and it will be preserved on regeneration
187
- 

Return to bug 24412