Bug 20691: (QA follow-up) API-related fixes
[koha.git] / Koha / Schema / Result / SearchMarcMap.pm
blob03bc94304cb1e688ee8d55a696b1881ba76cfdf8
1 use utf8;
2 package Koha::Schema::Result::SearchMarcMap;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
7 =head1 NAME
9 Koha::Schema::Result::SearchMarcMap
11 =cut
13 use strict;
14 use warnings;
16 use base 'DBIx::Class::Core';
18 =head1 TABLE: C<search_marc_map>
20 =cut
22 __PACKAGE__->table("search_marc_map");
24 =head1 ACCESSORS
26 =head2 id
28 data_type: 'integer'
29 is_auto_increment: 1
30 is_nullable: 0
32 =head2 index_name
34 data_type: 'enum'
35 extra: {list => ["biblios","authorities"]}
36 is_nullable: 0
38 what storage index this map is for
40 =head2 marc_type
42 data_type: 'enum'
43 extra: {list => ["marc21","unimarc","normarc"]}
44 is_nullable: 0
46 what MARC type this map is for
48 =head2 marc_field
50 data_type: 'varchar'
51 is_nullable: 0
52 size: 255
54 the MARC specifier for this field
56 =cut
58 __PACKAGE__->add_columns(
59 "id",
60 { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
61 "index_name",
63 data_type => "enum",
64 extra => { list => ["biblios", "authorities"] },
65 is_nullable => 0,
67 "marc_type",
69 data_type => "enum",
70 extra => { list => ["marc21", "unimarc", "normarc"] },
71 is_nullable => 0,
73 "marc_field",
74 { data_type => "varchar", is_nullable => 0, size => 255 },
77 =head1 PRIMARY KEY
79 =over 4
81 =item * L</id>
83 =back
85 =cut
87 __PACKAGE__->set_primary_key("id");
89 =head1 UNIQUE CONSTRAINTS
91 =head2 C<index_name>
93 =over 4
95 =item * L</index_name>
97 =item * L</marc_field>
99 =item * L</marc_type>
101 =back
103 =cut
105 __PACKAGE__->add_unique_constraint("index_name", ["index_name", "marc_field", "marc_type"]);
107 =head1 RELATIONS
109 =head2 search_marc_to_fields
111 Type: has_many
113 Related object: L<Koha::Schema::Result::SearchMarcToField>
115 =cut
117 __PACKAGE__->has_many(
118 "search_marc_to_fields",
119 "Koha::Schema::Result::SearchMarcToField",
120 { "foreign.search_marc_map_id" => "self.id" },
121 { cascade_copy => 0, cascade_delete => 0 },
125 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-10-12 16:41:47
126 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nKMOxnAJST3zNN6Kxj2ynA
128 __PACKAGE__->many_to_many("search_fields", "search_marc_to_fields", "search_field");