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

(-)a/Koha/Schema/Result/AccountDebitType.pm (-14 / +5 lines)
Lines 149-167 __PACKAGE__->has_many( Link Here
149
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9+mMPMSWcc/PwryYNQ2Jqg
149
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9+mMPMSWcc/PwryYNQ2Jqg
150
150
151
__PACKAGE__->add_columns(
151
__PACKAGE__->add_columns(
152
    '+is_system' => { is_boolean => 1 }
152
    '+archived'            => { is_boolean => 1 },
153
);
153
    '+is_system'           => { is_boolean => 1 },
154
154
    "+can_be_invoiced"     => { is_boolean => 1 },
155
__PACKAGE__->add_columns(
155
    "+can_be_sold"         => { is_boolean => 1 },
156
    "+can_be_sold" => { is_boolean => 1 }
156
    "+restricts_checkouts" => { is_boolean => 1 },
157
);
158
159
__PACKAGE__->add_columns(
160
    "+can_be_invoiced" => { is_boolean => 1 }
161
);
162
163
__PACKAGE__->add_columns(
164
    "+restricts_checkouts" => { is_boolean => 1 }
165
);
157
);
166
158
167
=head2 koha_objects_class
159
=head2 koha_objects_class
Lines 184-188 sub koha_object_class { Link Here
184
    'Koha::Account::DebitType';
176
    'Koha::Account::DebitType';
185
}
177
}
186
178
187
# You can replace this text with custom code or comments, and it will be preserved on regeneration
188
1;
179
1;
(-)a/Koha/Schema/Result/AdditionalField.pm (+1 lines)
Lines 168-173 __PACKAGE__->has_many( Link Here
168
168
169
__PACKAGE__->add_columns(
169
__PACKAGE__->add_columns(
170
    '+repeatable' => { is_boolean => 1 },
170
    '+repeatable' => { is_boolean => 1 },
171
    '+searchable' => { is_boolean => 1 },
171
);
172
);
172
173
173
1;
174
1;
(-)a/Koha/Schema/Result/Aqbudgetperiod.pm (+5 lines)
Lines 149-154 __PACKAGE__->has_many( Link Here
149
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
149
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
150
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:F/ipbU/Wrqy3pDInlmLOTw
150
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:F/ipbU/Wrqy3pDInlmLOTw
151
151
152
__PACKAGE__->add_columns(
153
    '+budget_period_active' => { is_boolean => 1 },
154
    '+budget_period_locked' => { is_boolean => 1 },
155
);
156
152
=head2 koha_object_class
157
=head2 koha_object_class
153
158
154
Missing POD for koha_object_class.
159
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/AqbudgetsPlanning.pm (-1 / +3 lines)
Lines 116-121 __PACKAGE__->belongs_to( Link Here
116
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
116
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7nhWIqgezc+W8sHqJkXCbQ
117
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7nhWIqgezc+W8sHqJkXCbQ
118
118
119
__PACKAGE__->add_columns(
120
    '+display' => { is_boolean => 1 },
121
);
119
122
120
# You can replace this text with custom content, and it will be preserved on regeneration
121
1;
123
1;
(-)a/Koha/Schema/Result/AuthSubfieldStructure.pm (+6 lines)
Lines 220-225 __PACKAGE__->belongs_to( Link Here
220
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-19 06:49:06
220
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-01-19 06:49:06
221
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:c6rPINoF/ZP4YzXU1VR+UQ
221
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:c6rPINoF/ZP4YzXU1VR+UQ
222
222
223
__PACKAGE__->add_columns(
224
    '+isurl'  => { is_boolean => 1 },
225
    '+linkid' => { is_boolean => 1 },
226
    '+tab'    => { is_boolean => 1 },
227
);
228
223
=head2 koha_object_class
229
=head2 koha_object_class
224
230
225
Missing POD for koha_object_class.
231
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/Borrower.pm (-6 / +7 lines)
Lines 2222-2233 __PACKAGE__->has_many( Link Here
2222
);
2222
);
2223
2223
2224
__PACKAGE__->add_columns(
2224
__PACKAGE__->add_columns(
2225
    '+anonymized'              => { is_boolean => 1 },
2225
    '+anonymized'                  => { is_boolean => 1 },
2226
    '+autorenew_checkouts'     => { is_boolean => 1 },
2226
    '+autorenew_checkouts'         => { is_boolean => 1 },
2227
    '+gonenoaddress'           => { is_boolean => 1 },
2227
    '+gonenoaddress'               => { is_boolean => 1 },
2228
    '+lost'                    => { is_boolean => 1 },
2228
    '+lost'                        => { is_boolean => 1 },
2229
    '+privacy_guarantor_fines' => { is_boolean => 1 },
2229
    '+privacy_guarantor_checkouts' => { is_boolean => 1 },
2230
    '+protected'               => { is_boolean => 1 },
2230
    '+privacy_guarantor_fines'     => { is_boolean => 1 },
2231
    '+protected'                   => { is_boolean => 1 },
2231
);
2232
);
2232
2233
2233
__PACKAGE__->has_many(
2234
__PACKAGE__->has_many(
(-)a/Koha/Schema/Result/BorrowerAttributeType.pm (-4 / +6 lines)
Lines 274-288 __PACKAGE__->has_many( Link Here
274
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Os1rn9zKu7/rVLVjZM3Mbg
274
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Os1rn9zKu7/rVLVjZM3Mbg
275
275
276
__PACKAGE__->add_columns(
276
__PACKAGE__->add_columns(
277
    '+display_checkout'          => { is_boolean => 1 },
278
    '+is_date'                   => { is_boolean => 1 },
277
    '+keep_for_pseudonymization' => { is_boolean => 1 },
279
    '+keep_for_pseudonymization' => { is_boolean => 1 },
278
    '+mandatory'                 => { is_boolean => 1 },
280
    '+mandatory'                 => { is_boolean => 1 },
281
    '+opac_display'              => { is_boolean => 1 },
282
    '+opac_editable'             => { is_boolean => 1 },
279
    '+opac_mandatory'            => { is_boolean => 1 },
283
    '+opac_mandatory'            => { is_boolean => 1 },
284
    '+repeatable'                => { is_boolean => 1 },
280
    '+searched_by_default'       => { is_boolean => 1 },
285
    '+searched_by_default'       => { is_boolean => 1 },
281
    '+staff_searchable'          => { is_boolean => 1 },
286
    '+staff_searchable'          => { is_boolean => 1 },
282
);
287
    '+unique_id'                 => { is_boolean => 1 },
283
284
__PACKAGE__->add_columns(
285
    '+is_date' => { is_boolean => 1 },
286
);
288
);
287
289
288
=head2 koha_object_class
290
=head2 koha_object_class
(-)a/Koha/Schema/Result/BorrowerMessagePreference.pm (-2 / +3 lines)
Lines 191-198 __PACKAGE__->many_to_many( Link Here
191
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-12 20:33:58
191
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-12 20:33:58
192
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KVYT5xqcXSDijZBaEHLV+g
192
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KVYT5xqcXSDijZBaEHLV+g
193
193
194
194
__PACKAGE__->add_columns(
195
# You can replace this text with custom content, and it will be preserved on regeneration
195
    '+wants_digest' => { is_boolean => 1 },
196
);
196
197
197
=head2 koha_object_class
198
=head2 koha_object_class
198
199
(-)a/Koha/Schema/Result/BorrowerModification.pm (+5 lines)
Lines 658-663 __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); Link Here
658
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 11:07:06
658
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 11:07:06
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QOqDkQ+8LuTY6qYrPhsQWw
659
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QOqDkQ+8LuTY6qYrPhsQWw
660
660
661
__PACKAGE__->add_columns(
662
    '+gonenoaddress' => { is_boolean => 1 },
663
    '+lost'          => { is_boolean => 1 },
664
);
665
661
=head2 koha_object_class
666
=head2 koha_object_class
662
667
663
Missing POD for koha_object_class.
668
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/Category.pm (-1 / +6 lines)
Lines 428-436 sub koha_objects_class { Link Here
428
__PACKAGE__->add_columns(
428
__PACKAGE__->add_columns(
429
    '+can_be_guarantee'                       => { is_boolean => 1 },
429
    '+can_be_guarantee'                       => { is_boolean => 1 },
430
    '+can_place_ill_in_opac'                  => { is_boolean => 1 },
430
    '+can_place_ill_in_opac'                  => { is_boolean => 1 },
431
    '+change_password'                        => { is_boolean => 1 },
432
    '+dateofbirthrequired'                    => { is_boolean => 1 },
431
    '+exclude_from_local_holds_priority'      => { is_boolean => 1 },
433
    '+exclude_from_local_holds_priority'      => { is_boolean => 1 },
432
    '+require_strong_password'                => { is_boolean => 1 },
433
    '+force_password_reset_when_set_by_staff' => { is_boolean => 1 },
434
    '+force_password_reset_when_set_by_staff' => { is_boolean => 1 },
435
    '+hidelostitems'                          => { is_boolean => 1 },
436
    '+overduenoticerequired'                  => { is_boolean => 1 },
437
    '+require_strong_password'                => { is_boolean => 1 },
438
    '+reset_password'                         => { is_boolean => 1 },
434
);
439
);
435
440
436
1;
441
1;
(-)a/Koha/Schema/Result/ClubTemplate.pm (+6 lines)
Lines 192-197 __PACKAGE__->has_many( Link Here
192
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
192
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53
193
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1UuejI9kkTb9eeNKvSLAQQ
193
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1UuejI9kkTb9eeNKvSLAQQ
194
194
195
__PACKAGE__->add_columns(
196
    '+is_deletable'            => { is_boolean => 1 },
197
    '+is_email_required'       => { is_boolean => 1 },
198
    '+is_enrollable_from_opac' => { is_boolean => 1 },
199
);
200
195
=head2 koha_object_class
201
=head2 koha_object_class
196
202
197
Missing POD for koha_object_class.
203
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/CreatorLayout.pm (-2 / +3 lines)
Lines 220-227 __PACKAGE__->set_primary_key("layout_id"); Link Here
220
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:W/ICw+9yY7wxZ0IgqqXcFg
220
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:W/ICw+9yY7wxZ0IgqqXcFg
221
221
222
__PACKAGE__->add_columns(
222
__PACKAGE__->add_columns(
223
    '+guidebox' => { is_boolean => 0 },
224
    '+oblique_title' => { is_boolean => 0 },
225
    '+callnum_split' => { is_boolean => 0 },
223
    '+callnum_split' => { is_boolean => 0 },
224
    '+guidebox'      => { is_boolean => 0 },
225
    '+oblique_title' => { is_boolean => 0 },
226
);
226
);
227
227
1;
228
1;
(-)a/Koha/Schema/Result/CurbsidePickupOpeningSlot.pm (-1 / +3 lines)
Lines 112-117 __PACKAGE__->belongs_to( Link Here
112
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-27 11:58:44
112
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-06-27 11:58:44
113
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5kzC0AAB9LL0gR+FFnmYgw
113
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5kzC0AAB9LL0gR+FFnmYgw
114
114
115
__PACKAGE__->add_columns(
116
    '+day' => { is_boolean => 1 },
117
);
115
118
116
# You can replace this text with custom code or comments, and it will be preserved on regeneration
117
1;
119
1;
(-)a/Koha/Schema/Result/Currency.pm (-1 / +4 lines)
Lines 185-191 __PACKAGE__->has_many( Link Here
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FhViwrd64xn2bqz7D054Mw
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FhViwrd64xn2bqz7D054Mw
186
186
187
__PACKAGE__->add_columns(
187
__PACKAGE__->add_columns(
188
    "+p_cs_precedes" => { is_boolean => 1 },
188
    '+active'         => { is_boolean => 1 },
189
    '+archived'       => { is_boolean => 1 },
190
    '+p_sep_by_space' => { is_boolean => 1 },
191
    "+p_cs_precedes"  => { is_boolean => 1 },
189
);
192
);
190
193
191
=head2 koha_object_class
194
=head2 koha_object_class
(-)a/Koha/Schema/Result/Deletedbiblio.pm (+4 lines)
Lines 228-233 __PACKAGE__->has_one( Link Here
228
    { cascade_copy           => 0, cascade_delete => 0 },
228
    { cascade_copy           => 0, cascade_delete => 0 },
229
);
229
);
230
230
231
__PACKAGE__->add_columns(
232
    '+serial' => { is_boolean => 1 },
233
);
234
231
=head2 koha_objects_class
235
=head2 koha_objects_class
232
236
233
Missing POD for koha_objects_class.
237
Missing POD for koha_objects_class.
(-)a/Koha/Schema/Result/Deletedborrower.pm (-6 / +7 lines)
Lines 861-872 __PACKAGE__->add_columns( Link Here
861
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5QA+/eORyEKhkG++0f3Hvw
861
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5QA+/eORyEKhkG++0f3Hvw
862
862
863
__PACKAGE__->add_columns(
863
__PACKAGE__->add_columns(
864
    '+anonymized'              => { is_boolean => 1 },
864
    '+anonymized'                  => { is_boolean => 1 },
865
    '+autorenew_checkouts'     => { is_boolean => 1 },
865
    '+autorenew_checkouts'         => { is_boolean => 1 },
866
    '+gonenoaddress'           => { is_boolean => 1 },
866
    '+gonenoaddress'               => { is_boolean => 1 },
867
    '+lost'                    => { is_boolean => 1 },
867
    '+lost'                        => { is_boolean => 1 },
868
    '+privacy_guarantor_fines' => { is_boolean => 1 },
868
    '+privacy_guarantor_checkouts' => { is_boolean => 1 },
869
    '+protected'               => { is_boolean => 1 },
869
    '+privacy_guarantor_fines'     => { is_boolean => 1 },
870
    '+protected'                   => { is_boolean => 1 },
870
);
871
);
871
872
872
=head2 koha_objects_class
873
=head2 koha_objects_class
(-)a/Koha/Schema/Result/Deleteditem.pm (+6 lines)
Lines 536-542 __PACKAGE__->set_primary_key("itemnumber"); Link Here
536
536
537
__PACKAGE__->add_columns(
537
__PACKAGE__->add_columns(
538
    '+bookable'                          => { is_boolean => 1 },
538
    '+bookable'                          => { is_boolean => 1 },
539
    '+damaged'                           => { is_boolean => 1 },
539
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
540
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
541
    '+itemlost'                          => { is_boolean => 1 },
542
    '+notforloan'                        => { is_boolean => 1 },
543
    '+restricted'                        => { is_boolean => 1 },
544
    '+stack'                             => { is_boolean => 1 },
545
    '+withdrawn'                         => { is_boolean => 1 },
540
);
546
);
541
547
542
=head2 koha_objects_class
548
=head2 koha_objects_class
(-)a/Koha/Schema/Result/HouseboundRole.pm (+5 lines)
Lines 91-96 __PACKAGE__->belongs_to( Link Here
91
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
91
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
92
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BocU8VE+5j4lYlxNU6Lofw
92
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BocU8VE+5j4lYlxNU6Lofw
93
93
94
__PACKAGE__->add_columns(
95
    '+housebound_chooser'   => { is_boolean => 1 },
96
    '+housebound_deliverer' => { is_boolean => 1 },
97
);
98
94
=head2 koha_object_class
99
=head2 koha_object_class
95
100
96
Missing POD for koha_object_class.
101
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/ImportBiblio.pm (+4 lines)
Lines 128-133 __PACKAGE__->belongs_to( Link Here
128
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-17 11:17:50
128
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-10-17 11:17:50
129
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Oj/1VkjYP538OlNeu41mqA
129
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Oj/1VkjYP538OlNeu41mqA
130
130
131
__PACKAGE__->add_columns(
132
    '+has_items' => { is_boolean => 1 },
133
);
134
131
=head2 koha_object_class
135
=head2 koha_object_class
132
136
133
Missing POD for koha_object_class.
137
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/Item.pm (+6 lines)
Lines 1029-1035 __PACKAGE__->belongs_to( Link Here
1029
1029
1030
__PACKAGE__->add_columns(
1030
__PACKAGE__->add_columns(
1031
    '+bookable'                          => { is_boolean => 1 },
1031
    '+bookable'                          => { is_boolean => 1 },
1032
    '+damaged'                           => { is_boolean => 1 },
1032
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
1033
    '+exclude_from_local_holds_priority' => { is_boolean => 1 },
1034
    '+itemlost'                          => { is_boolean => 1 },
1035
    '+notforloan'                        => { is_boolean => 1 },
1036
    '+restricted'                        => { is_boolean => 1 },
1037
    '+stack'                             => { is_boolean => 1 },
1038
    '+withdrawn'                         => { is_boolean => 1 },
1033
);
1039
);
1034
1040
1035
# Relationship with orders via the aqorders_item table that not have foreign keys
1041
# Relationship with orders via the aqorders_item table that not have foreign keys
(-)a/Koha/Schema/Result/Letter.pm (+4 lines)
Lines 244-249 __PACKAGE__->belongs_to( Link Here
244
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-26 17:01:21
244
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-26 17:01:21
245
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UglmO8Xk7xnC09bYETA5+w
245
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UglmO8Xk7xnC09bYETA5+w
246
246
247
__PACKAGE__->add_columns(
248
    '+is_html' => { is_boolean => 1 },
249
);
250
247
=head2 koha_object_class
251
=head2 koha_object_class
248
252
249
Missing POD for koha_object_class.
253
Missing POD for koha_object_class.
(-)a/Koha/Schema/Result/MarcModificationTemplateAction.pm (-1 / +3 lines)
Lines 237-242 __PACKAGE__->belongs_to( Link Here
237
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-24 20:18:23
237
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-02-24 20:18:23
238
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yDK2nFt+Fj3UuXAij1UwQw
238
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yDK2nFt+Fj3UuXAij1UwQw
239
239
240
__PACKAGE__->add_columns(
241
    '+conditional_regex' => { is_boolean => 1 },
242
);
240
243
241
# You can replace this text with custom code or comments, and it will be preserved on regeneration
242
1;
244
1;
(-)a/Koha/Schema/Result/MarcSubfieldStructure.pm (-1 / +5 lines)
Lines 233-238 __PACKAGE__->belongs_to( Link Here
233
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-12-10 09:06:23
233
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2020-12-10 09:06:23
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KVbDXEVf96eDkbPYpcmQVA
234
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KVbDXEVf96eDkbPYpcmQVA
235
235
236
__PACKAGE__->add_columns(
237
    '+hidden' => { is_boolean => 1 },
238
    '+isurl'  => { is_boolean => 1 },
239
    '+tab'    => { is_boolean => 1 },
240
);
236
241
237
# You can replace this text with custom content, and it will be preserved on regeneration
238
1;
242
1;
(-)a/Koha/Schema/Result/MessageAttribute.pm (-2 / +3 lines)
Lines 115-122 __PACKAGE__->has_many( Link Here
115
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
115
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
116
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N033AvWwG2CDBDuTj2unqQ
116
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:N033AvWwG2CDBDuTj2unqQ
117
117
118
118
__PACKAGE__->add_columns(
119
# You can replace this text with custom content, and it will be preserved on regeneration
119
    '+takes_days' => { is_boolean => 1 },
120
);
120
121
121
=head2 koha_object_class
122
=head2 koha_object_class
122
123
(-)a/Koha/Schema/Result/MessageTransport.pm (-2 / +3 lines)
Lines 132-139 __PACKAGE__->belongs_to( Link Here
132
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-09 21:01:19
132
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-05-09 21:01:19
133
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:v0JbPeSBKkHyINem9W9vxw
133
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:v0JbPeSBKkHyINem9W9vxw
134
134
135
135
__PACKAGE__->add_columns(
136
# You can replace this text with custom content, and it will be preserved on regeneration
136
    '+is_digest' => { is_boolean => 1 },
137
);
137
138
138
=head2 koha_object_class
139
=head2 koha_object_class
139
140
(-)a/Koha/Schema/Result/OldIssue.pm (-1 / +2 lines)
Lines 336-342 __PACKAGE__->belongs_to( Link Here
336
336
337
__PACKAGE__->add_columns(
337
__PACKAGE__->add_columns(
338
    '+auto_renew'      => { is_boolean => 1 },
338
    '+auto_renew'      => { is_boolean => 1 },
339
    '+onsite_checkout' => { is_boolean => 1 }
339
    '+noteseen'        => { is_boolean => 1 },
340
    '+onsite_checkout' => { is_boolean => 1 },
340
);
341
);
341
342
342
__PACKAGE__->belongs_to(
343
__PACKAGE__->belongs_to(
(-)a/Koha/Schema/Result/PatronList.pm (-1 / +3 lines)
Lines 114-119 __PACKAGE__->has_many( Link Here
114
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
114
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
115
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+gAlf5GQ7YSgAtFIXgqVWw
115
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+gAlf5GQ7YSgAtFIXgqVWw
116
116
117
__PACKAGE__->add_columns(
118
    '+shared' => { is_boolean => 1 },
119
);
117
120
118
# You can replace this text with custom content, and it will be preserved on regeneration
119
1;
121
1;
(-)a/Koha/Schema/Result/Rating.pm (-1 / +3 lines)
Lines 121-126 __PACKAGE__->belongs_to( Link Here
121
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
121
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
122
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wUwI/h1WR8kVGMNCrv/tUQ
122
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wUwI/h1WR8kVGMNCrv/tUQ
123
123
124
__PACKAGE__->add_columns(
125
    '+rating_value' => { is_boolean => 1 },
126
);
124
127
125
# You can replace this text with custom content, and it will be preserved on regeneration
126
1;
128
1;
(-)a/Koha/Schema/Result/SearchField.pm (-1 / +3 lines)
Lines 184-190 __PACKAGE__->has_many( Link Here
184
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/WPJEu04y32zDMr+vnK5og
184
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/WPJEu04y32zDMr+vnK5og
185
185
186
__PACKAGE__->add_columns(
186
__PACKAGE__->add_columns(
187
    '+mandatory' => { is_boolean => 1 },
187
    '+mandatory'    => { is_boolean => 1 },
188
    '+opac'         => { is_boolean => 1 },
189
    '+staff_client' => { is_boolean => 1 },
188
);
190
);
189
191
190
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
192
__PACKAGE__->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");
(-)a/Koha/Schema/Result/SearchMarcToField.pm (-2 / +3 lines)
Lines 146-154 __PACKAGE__->belongs_to( Link Here
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rJQhUx0rIc6RVz4HJ5vy/g
146
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rJQhUx0rIc6RVz4HJ5vy/g
147
147
148
__PACKAGE__->add_columns(
148
__PACKAGE__->add_columns(
149
    '+facet' => { is_boolean => 1 },
149
    '+facet'       => { is_boolean => 1 },
150
    '+search'      => { is_boolean => 1 },
151
    '+sort'        => { is_boolean => 1 },
150
    '+suggestible' => { is_boolean => 1 },
152
    '+suggestible' => { is_boolean => 1 },
151
    '+sort' => { is_boolean => 1 },
152
);
153
);
153
154
154
1;
155
1;
(-)a/Koha/Schema/Result/Subscription.pm (-3 / +4 lines)
Lines 606-614 __PACKAGE__->has_many( Link Here
606
);
606
);
607
607
608
__PACKAGE__->add_columns(
608
__PACKAGE__->add_columns(
609
    '+closed'         => { is_boolean => 1 },
609
    '+closed'          => { is_boolean => 1 },
610
    '+skip_serialseq' => { is_boolean => 1 },
610
    '+manualhistory'   => { is_boolean => 1 },
611
    '+serialsadditems' => { is_boolean => 1 },
612
    '+skip_serialseq'  => { is_boolean => 1 },
611
);
613
);
612
614
613
# You can replace this text with custom content, and it will be preserved on regeneration
614
1;
615
1;
(-)a/Koha/Schema/Result/TransportCost.pm (-1 / +3 lines)
Lines 112-117 __PACKAGE__->belongs_to( Link Here
112
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
112
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
113
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gMs7dT/xK4ClGqQEHI7HOQ
113
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gMs7dT/xK4ClGqQEHI7HOQ
114
114
115
__PACKAGE__->add_columns(
116
    '+disable_transfer' => { is_boolean => 1 },
117
);
115
118
116
# You can replace this text with custom content, and it will be preserved on regeneration
117
1;
119
1;
(-)a/Koha/Schema/Result/VendorEdiAccount.pm (-2 / +7 lines)
Lines 275-280 __PACKAGE__->belongs_to( Link Here
275
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-19 16:25:44
275
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-19 16:25:44
276
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jenUF3Wx7J7F5270mLQMbw
276
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jenUF3Wx7J7F5270mLQMbw
277
277
278
__PACKAGE__->add_columns(
279
    '+auto_orders'       => { is_boolean => 1 },
280
    '+invoices_enabled'  => { is_boolean => 1 },
281
    '+orders_enabled'    => { is_boolean => 1 },
282
    '+quotes_enabled'    => { is_boolean => 1 },
283
    '+responses_enabled' => { is_boolean => 1 },
284
);
278
285
279
# You can replace this text with custom code or comments, and it will be preserved on regeneration
280
1;
286
1;
281
- 

Return to bug 39835