Lines 579-588
controls if relatives can see this patron's checkouts
Link Here
|
579 |
|
579 |
|
580 |
=head2 checkprevcheckout |
580 |
=head2 checkprevcheckout |
581 |
|
581 |
|
582 |
data_type: 'varchar' |
582 |
data_type: 'enum' |
583 |
default_value: 'inherit' |
583 |
default_value: 'inherit' |
|
|
584 |
extra: {list => ["yes","no","inherit"]} |
584 |
is_nullable: 0 |
585 |
is_nullable: 0 |
585 |
size: 7 |
|
|
586 |
|
586 |
|
587 |
produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'. |
587 |
produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'. |
588 |
|
588 |
|
Lines 817-826
__PACKAGE__->add_columns(
Link Here
|
817 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
817 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
818 |
"checkprevcheckout", |
818 |
"checkprevcheckout", |
819 |
{ |
819 |
{ |
820 |
data_type => "varchar", |
820 |
data_type => "enum", |
821 |
default_value => "inherit", |
821 |
default_value => "inherit", |
|
|
822 |
extra => { list => ["yes", "no", "inherit"] }, |
822 |
is_nullable => 0, |
823 |
is_nullable => 0, |
823 |
size => 7, |
|
|
824 |
}, |
824 |
}, |
825 |
"updated_on", |
825 |
"updated_on", |
826 |
{ |
826 |
{ |
Lines 857-864
__PACKAGE__->add_columns(
Link Here
|
857 |
); |
857 |
); |
858 |
|
858 |
|
859 |
|
859 |
|
860 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-04-28 16:41:47 |
860 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-10 07:11:31 |
861 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5QA+/eORyEKhkG++0f3Hvw |
861 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vAkNNQagJcYfZ0/6mDOw8g |
862 |
|
862 |
|
863 |
__PACKAGE__->add_columns( |
863 |
__PACKAGE__->add_columns( |
864 |
'+anonymized' => { is_boolean => 1 }, |
864 |
'+anonymized' => { is_boolean => 1 }, |
865 |
- |
|
|