|
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 140-145
__PACKAGE__->add_columns(
Link Here
|
| 140 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
148 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 141 |
"unique_id", |
149 |
"unique_id", |
| 142 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
150 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
151 |
"is_date", |
| 152 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 143 |
"opac_display", |
153 |
"opac_display", |
| 144 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
154 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 145 |
"opac_editable", |
155 |
"opac_editable", |
|
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-03-17 23:12:24 |
| 244 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VgJP4Ugfz0sN3YoJk/tshA |
254 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BMvvDUsTQAwRrddZL3gvTg |
| 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 |
- |
|
|