]> git.koha-community.org Git - koha.git/blob - Koha/Schema/Result/SearchMarcMap.pm
Bug 12478: change the schema for storing mappings
[koha.git] / Koha / Schema / Result / SearchMarcMap.pm
1 use utf8;
2 package Koha::Schema::Result::SearchMarcMap;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Koha::Schema::Result::SearchMarcMap
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<search_marc_map>
19
20 =cut
21
22 __PACKAGE__->table("search_marc_map");
23
24 =head1 ACCESSORS
25
26 =head2 id
27
28   data_type: 'integer'
29   is_auto_increment: 1
30   is_nullable: 0
31
32 =head2 index_name
33
34   data_type: 'enum'
35   extra: {list => ["biblios","authorities"]}
36   is_nullable: 0
37
38 what storage index this map is for
39
40 =head2 marc_type
41
42   data_type: 'enum'
43   extra: {list => ["marc21","unimarc","normarc"]}
44   is_nullable: 0
45
46 what MARC type this map is for
47
48 =head2 marc_field
49
50   data_type: 'varchar'
51   is_nullable: 0
52   size: 255
53
54 the MARC specifier for this field
55
56 =head2 facet
57
58   data_type: 'tinyint'
59   default_value: 0
60   is_nullable: 1
61
62 true if a facet field should be generated for this
63
64 =cut
65
66 __PACKAGE__->add_columns(
67   "id",
68   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
69   "index_name",
70   {
71     data_type => "enum",
72     extra => { list => ["biblios", "authorities"] },
73     is_nullable => 0,
74   },
75   "marc_type",
76   {
77     data_type => "enum",
78     extra => { list => ["marc21", "unimarc", "normarc"] },
79     is_nullable => 0,
80   },
81   "marc_field",
82   { data_type => "varchar", is_nullable => 0, size => 255 },
83   "facet",
84   { data_type => "tinyint", default_value => 0, is_nullable => 1 },
85 );
86
87 =head1 PRIMARY KEY
88
89 =over 4
90
91 =item * L</id>
92
93 =back
94
95 =cut
96
97 __PACKAGE__->set_primary_key("id");
98
99 =head1 UNIQUE CONSTRAINTS
100
101 =head2 C<index_name_2>
102
103 =over 4
104
105 =item * L</index_name>
106
107 =item * L</marc_type>
108
109 =item * L</marc_field>
110
111 =back
112
113 =cut
114
115 __PACKAGE__->add_unique_constraint("index_name_2", ["index_name", "marc_type", "marc_field"]);
116
117 =head1 RELATIONS
118
119 =head2 search_marc_to_fields
120
121 Type: has_many
122
123 Related object: L<Koha::Schema::Result::SearchMarcToField>
124
125 =cut
126
127 __PACKAGE__->has_many(
128   "search_marc_to_fields",
129   "Koha::Schema::Result::SearchMarcToField",
130   { "foreign.search_marc_map_id" => "self.id" },
131   { cascade_copy => 0, cascade_delete => 0 },
132 );
133
134 =head2 search_fields
135
136 Type: many_to_many
137
138 Composing rels: L</search_marc_to_fields> -> search_field
139
140 =cut
141
142 __PACKAGE__->many_to_many("search_fields", "search_marc_to_fields", "search_field");
143
144
145 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-06-10 14:32:07
146 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9Xz04ajKUJXxwJ5pdo+cUQ
147
148
149 # You can replace this text with custom code or comments, and it will be preserved on regeneration
150 1;