Bug 9593: update DBIC files
[koha.git] / Koha / Schema / Result / MatchpointComponent.pm
1 use utf8;
2 package Koha::Schema::Result::MatchpointComponent;
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::MatchpointComponent
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 TABLE: C<matchpoint_components>
19
20 =cut
21
22 __PACKAGE__->table("matchpoint_components");
23
24 =head1 ACCESSORS
25
26 =head2 matchpoint_id
27
28   data_type: 'integer'
29   is_foreign_key: 1
30   is_nullable: 0
31
32 =head2 matchpoint_component_id
33
34   data_type: 'integer'
35   is_auto_increment: 1
36   is_nullable: 0
37
38 =head2 sequence
39
40   accessor: undef
41   data_type: 'integer'
42   default_value: 0
43   is_nullable: 0
44
45 =head2 tag
46
47   data_type: 'varchar'
48   default_value: (empty string)
49   is_nullable: 0
50   size: 3
51
52 =head2 subfields
53
54   data_type: 'varchar'
55   default_value: (empty string)
56   is_nullable: 0
57   size: 40
58
59 =head2 offset
60
61   data_type: 'integer'
62   default_value: 0
63   is_nullable: 0
64
65 =head2 length
66
67   data_type: 'integer'
68   default_value: 0
69   is_nullable: 0
70
71 =cut
72
73 __PACKAGE__->add_columns(
74   "matchpoint_id",
75   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
76   "matchpoint_component_id",
77   { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
78   "sequence",
79   {
80     accessor      => undef,
81     data_type     => "integer",
82     default_value => 0,
83     is_nullable   => 0,
84   },
85   "tag",
86   { data_type => "varchar", default_value => "", is_nullable => 0, size => 3 },
87   "subfields",
88   { data_type => "varchar", default_value => "", is_nullable => 0, size => 40 },
89   "offset",
90   { data_type => "integer", default_value => 0, is_nullable => 0 },
91   "length",
92   { data_type => "integer", default_value => 0, is_nullable => 0 },
93 );
94
95 =head1 PRIMARY KEY
96
97 =over 4
98
99 =item * L</matchpoint_component_id>
100
101 =back
102
103 =cut
104
105 __PACKAGE__->set_primary_key("matchpoint_component_id");
106
107 =head1 RELATIONS
108
109 =head2 matchpoint
110
111 Type: belongs_to
112
113 Related object: L<Koha::Schema::Result::Matchpoint>
114
115 =cut
116
117 __PACKAGE__->belongs_to(
118   "matchpoint",
119   "Koha::Schema::Result::Matchpoint",
120   { matchpoint_id => "matchpoint_id" },
121   { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
122 );
123
124 =head2 matchpoint_component_norms
125
126 Type: has_many
127
128 Related object: L<Koha::Schema::Result::MatchpointComponentNorm>
129
130 =cut
131
132 __PACKAGE__->has_many(
133   "matchpoint_component_norms",
134   "Koha::Schema::Result::MatchpointComponentNorm",
135   {
136     "foreign.matchpoint_component_id" => "self.matchpoint_component_id",
137   },
138   { cascade_copy => 0, cascade_delete => 0 },
139 );
140
141
142 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
143 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:R9niKe/wGJXD+ZVkIP5Wpg
144
145
146 # You can replace this text with custom content, and it will be preserved on regeneration
147 1;