@@ -, +, @@ --- Koha/Schema/Result/SearchField.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) --- a/Koha/Schema/Result/SearchField.pm +++ a/Koha/Schema/Result/SearchField.pm @@ -85,6 +85,14 @@ the order place of the field in facet list if faceted if marked this field is not editable or removable +=head2 authorised_value_category + + data_type: 'varchar' + is_nullable: 1 + size: 32 + +link to authorised value category + =cut __PACKAGE__->add_columns( @@ -123,6 +131,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 1, is_nullable => 0 }, "mandatory", { data_type => "tinyint", is_nullable => 1 }, + "authorised_value_category", + { data_type => "varchar", is_nullable => 1, size => 32 }, ); =head1 PRIMARY KEY @@ -169,8 +179,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-07-18 15:10:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Uk5JsfPJo0XVvGfMfJg3cg +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-03-21 14:46:42 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/QKQuED5bWvSqfYSRYDuYA __PACKAGE__->add_columns( '+mandatory' => { is_boolean => 1 }, --