Lines 79-84
defines if this field is editable by patrons on their account in the OPAC (1 for
Link Here
|
79 |
|
79 |
|
80 |
defines if this field is searchable via the patron search in the staff interface (1 for yes, 0 for no) |
80 |
defines if this field is searchable via the patron search in the staff interface (1 for yes, 0 for no) |
81 |
|
81 |
|
|
|
82 |
=head2 searched_by_default |
83 |
|
84 |
data_type: 'tinyint' |
85 |
default_value: 0 |
86 |
is_nullable: 0 |
87 |
|
88 |
defines if this field is included in "Standard" patron searches in the staff interface (1 for yes, 0 for no) |
89 |
|
82 |
=head2 authorised_value_category |
90 |
=head2 authorised_value_category |
83 |
|
91 |
|
84 |
data_type: 'varchar' |
92 |
data_type: 'varchar' |
Lines 146-151
__PACKAGE__->add_columns(
Link Here
|
146 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
154 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
147 |
"staff_searchable", |
155 |
"staff_searchable", |
148 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
156 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
157 |
"searched_by_default", |
158 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
149 |
"authorised_value_category", |
159 |
"authorised_value_category", |
150 |
{ data_type => "varchar", is_nullable => 1, size => 32 }, |
160 |
{ data_type => "varchar", is_nullable => 1, size => 32 }, |
151 |
"display_checkout", |
161 |
"display_checkout", |
Lines 240-247
__PACKAGE__->has_many(
Link Here
|
240 |
); |
250 |
); |
241 |
|
251 |
|
242 |
|
252 |
|
243 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-25 12:50:55 |
253 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-11 13:08:43 |
244 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VgJP4Ugfz0sN3YoJk/tshA |
254 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tygbX1pq/Mwh7T7b5sUfJQ |
245 |
|
255 |
|
246 |
__PACKAGE__->add_columns( |
256 |
__PACKAGE__->add_columns( |
247 |
'+keep_for_pseudonymization' => { is_boolean => 1 }, |
257 |
'+keep_for_pseudonymization' => { is_boolean => 1 }, |
248 |
- |
|
|