|
Lines 59-64
__PACKAGE__->table("library_groups");
Link Here
|
| 59 |
default_value: 0 |
59 |
default_value: 0 |
| 60 |
is_nullable: 0 |
60 |
is_nullable: 0 |
| 61 |
|
61 |
|
|
|
62 |
=head2 ft_limit_item_editing |
| 63 |
|
| 64 |
data_type: 'tinyint' |
| 65 |
default_value: 0 |
| 66 |
is_nullable: 0 |
| 67 |
|
| 62 |
=head2 ft_search_groups_opac |
68 |
=head2 ft_search_groups_opac |
| 63 |
|
69 |
|
| 64 |
data_type: 'tinyint' |
70 |
data_type: 'tinyint' |
|
Lines 105-110
__PACKAGE__->add_columns(
Link Here
|
| 105 |
{ data_type => "mediumtext", is_nullable => 1 }, |
111 |
{ data_type => "mediumtext", is_nullable => 1 }, |
| 106 |
"ft_hide_patron_info", |
112 |
"ft_hide_patron_info", |
| 107 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
113 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
114 |
"ft_limit_item_editing", |
| 115 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 108 |
"ft_search_groups_opac", |
116 |
"ft_search_groups_opac", |
| 109 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
117 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 110 |
"ft_search_groups_staff", |
118 |
"ft_search_groups_staff", |
|
Lines 224-231
__PACKAGE__->belongs_to(
Link Here
|
| 224 |
); |
232 |
); |
| 225 |
|
233 |
|
| 226 |
|
234 |
|
| 227 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-01-30 15:43:39 |
235 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-04-09 13:28:31 |
| 228 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qg0Ckj0ZBRjSaQgEcvxSZA |
236 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6Yvf2zgaVx5htI634NzDtQ |
| 229 |
|
237 |
|
| 230 |
sub koha_object_class { |
238 |
sub koha_object_class { |
| 231 |
'Koha::Library::Group'; |
239 |
'Koha::Library::Group'; |
| 232 |
- |
|
|