]> git.donarmstrong.com Git - debbugs.git/blob - Debbugs/DB/Result/MessageRef.pm
eb42652418746a5e32fa407564d2618fa7673a3e
[debbugs.git] / Debbugs / DB / Result / MessageRef.pm
1 use utf8;
2 package Debbugs::DB::Result::MessageRef;
3
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6
7 =head1 NAME
8
9 Debbugs::DB::Result::MessageRef - Message references
10
11 =cut
12
13 use strict;
14 use warnings;
15
16 use base 'DBIx::Class::Core';
17
18 =head1 COMPONENTS LOADED
19
20 =over 4
21
22 =item * L<DBIx::Class::InflateColumn::DateTime>
23
24 =item * L<DBIx::Class::TimeStamp>
25
26 =back
27
28 =cut
29
30 __PACKAGE__->load_components("InflateColumn::DateTime", "TimeStamp");
31
32 =head1 TABLE: C<message_refs>
33
34 =cut
35
36 __PACKAGE__->table("message_refs");
37
38 =head1 ACCESSORS
39
40 =head2 id
41
42   data_type: 'integer'
43   is_auto_increment: 1
44   is_nullable: 0
45   sequence: 'message_refs_id_seq'
46
47 =head2 message
48
49   data_type: 'integer'
50   is_foreign_key: 1
51   is_nullable: 0
52
53 Message id (matches message)
54
55 =head2 refs
56
57   data_type: 'integer'
58   is_foreign_key: 1
59   is_nullable: 0
60
61 Reference id (matches message)
62
63 =head2 inferred
64
65   data_type: 'boolean'
66   default_value: false
67   is_nullable: 1
68
69 TRUE if this message reference was reconstructed; primarily of use for messages which lack In-Reply-To: or References: headers
70
71 =head2 primary_ref
72
73   data_type: 'boolean'
74   default_value: false
75   is_nullable: 1
76
77 TRUE if this message->ref came from In-Reply-To: or similar.
78
79 =cut
80
81 __PACKAGE__->add_columns(
82   "id",
83   {
84     data_type         => "integer",
85     is_auto_increment => 1,
86     is_nullable       => 0,
87     sequence          => "message_refs_id_seq",
88   },
89   "message",
90   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
91   "refs",
92   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
93   "inferred",
94   { data_type => "boolean", default_value => \"false", is_nullable => 1 },
95   "primary_ref",
96   { data_type => "boolean", default_value => \"false", is_nullable => 1 },
97 );
98
99 =head1 PRIMARY KEY
100
101 =over 4
102
103 =item * L</id>
104
105 =back
106
107 =cut
108
109 __PACKAGE__->set_primary_key("id");
110
111 =head1 UNIQUE CONSTRAINTS
112
113 =head2 C<message_refs_message_refs_idx>
114
115 =over 4
116
117 =item * L</message>
118
119 =item * L</refs>
120
121 =back
122
123 =cut
124
125 __PACKAGE__->add_unique_constraint("message_refs_message_refs_idx", ["message", "refs"]);
126
127 =head1 RELATIONS
128
129 =head2 message
130
131 Type: belongs_to
132
133 Related object: L<Debbugs::DB::Result::Message>
134
135 =cut
136
137 __PACKAGE__->belongs_to(
138   "message",
139   "Debbugs::DB::Result::Message",
140   { id => "message" },
141   { is_deferrable => 0, on_delete => "CASCADE", on_update => "CASCADE" },
142 );
143
144 =head2 ref
145
146 Type: belongs_to
147
148 Related object: L<Debbugs::DB::Result::Message>
149
150 =cut
151
152 __PACKAGE__->belongs_to(
153   "ref",
154   "Debbugs::DB::Result::Message",
155   { id => "refs" },
156   { is_deferrable => 0, on_delete => "CASCADE", on_update => "CASCADE" },
157 );
158
159
160 # Created by DBIx::Class::Schema::Loader v0.07042 @ 2014-11-30 21:56:51
161 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AYCyNKkqOAjoWVelU0HKrA
162
163
164 # You can replace this text with custom code or comments, and it will be preserved on regeneration
165 1;