Bug 24476: Add boolean for TINYINT
Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
9933cc7b59
commit
fc4434d5fd
2 changed files with 10 additions and 1 deletions
|
@ -1665,7 +1665,8 @@ __PACKAGE__->add_columns(
|
|||
'+anonymized' => { is_boolean => 1 },
|
||||
'+lost' => { is_boolean => 1 },
|
||||
'+gonenoaddress' => { is_boolean => 1 },
|
||||
'+privacy_guarantor_fines' => { is_boolean => 1 }
|
||||
'+privacy_guarantor_fines' => { is_boolean => 1 },
|
||||
'+autorenew_checkouts' => { is_boolean => 1 }
|
||||
);
|
||||
|
||||
sub koha_objects_class {
|
||||
|
|
|
@ -661,6 +661,14 @@ __PACKAGE__->add_columns(
|
|||
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-03-23 11:45:25
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fVl4c/8pymGaZBDR3EOrNg
|
||||
|
||||
__PACKAGE__->add_columns(
|
||||
'+anonymized' => { is_boolean => 1 },
|
||||
'+lost' => { is_boolean => 1 },
|
||||
'+gonenoaddress' => { is_boolean => 1 },
|
||||
'+privacy_guarantor_fines' => { is_boolean => 1 },
|
||||
'+autorenew_checkouts' => { is_boolean => 1 }
|
||||
);
|
||||
|
||||
sub koha_objects_class {
|
||||
'Koha::Old::Patrons';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue