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

(-)a/Koha/Schema/Result/BorrowerAttributeType.pm (-3 / +12 lines)
Lines 55-60 defines whether one patron/borrower can have multiple values for this custom fie Link Here
55
55
56
defines if this value needs to be unique (1 for yes, 0 for no)
56
defines if this value needs to be unique (1 for yes, 0 for no)
57
57
58
=head2 is_date
59
60
  data_type: 'tinyint'
61
  default_value: 0
62
  is_nullable: 0
63
64
defines if this field is displayed as a date
65
58
=head2 opac_display
66
=head2 opac_display
59
67
60
  data_type: 'tinyint'
68
  data_type: 'tinyint'
Lines 148-153 __PACKAGE__->add_columns( Link Here
148
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
156
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
149
  "unique_id",
157
  "unique_id",
150
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
158
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
159
  "is_date",
160
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
151
  "opac_display",
161
  "opac_display",
152
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
162
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
153
  "opac_editable",
163
  "opac_editable",
Lines 250-257 __PACKAGE__->has_many( Link Here
250
);
260
);
251
261
252
262
253
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-09 13:06:12
263
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-17 23:12:24
254
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oeyBHoK+4epL1s+IAKNY7w
264
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BMvvDUsTQAwRrddZL3gvTg
255
265
256
__PACKAGE__->add_columns(
266
__PACKAGE__->add_columns(
257
    '+keep_for_pseudonymization' => { is_boolean => 1 },
267
    '+keep_for_pseudonymization' => { is_boolean => 1 },
258
- 

Return to bug 32610