2 package Koha
::Schema
::Result
::SearchField
;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 Koha::Schema::Result::SearchField
16 use base
'DBIx::Class::Core';
18 =head1 TABLE: C<search_field>
22 __PACKAGE__
->table("search_field");
38 the name of the field as it will be stored in the search engine
46 the human readable name of the field, for display
51 extra: {list => ["","string","date","number","boolean","sum"]}
54 what type of data this holds, relevant when storing it in the search engine
58 __PACKAGE__
->add_columns(
60 { data_type
=> "integer", is_auto_increment
=> 1, is_nullable
=> 0 },
62 { data_type
=> "varchar", is_nullable
=> 0, size
=> 255 },
64 { data_type
=> "varchar", is_nullable
=> 0, size
=> 255 },
68 extra
=> { list
=> ["", "string", "date", "number", "boolean", "sum"] },
83 __PACKAGE__
->set_primary_key("id");
85 =head1 UNIQUE CONSTRAINTS
97 __PACKAGE__
->add_unique_constraint("name", ["name"]);
101 =head2 search_marc_to_fields
105 Related object: L<Koha::Schema::Result::SearchMarcToField>
109 __PACKAGE__
->has_many(
110 "search_marc_to_fields",
111 "Koha::Schema::Result::SearchMarcToField",
112 { "foreign.search_field_id" => "self.id" },
113 { cascade_copy
=> 0, cascade_delete
=> 0 },
117 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-03-23 13:30:43
118 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1IenQWmCO16tJ/nIFTFYug
120 __PACKAGE__
->many_to_many("search_marc_maps", "search_marc_to_fields", "search_marc_map");