]> git.donarmstrong.com Git - debbugs.git/blob - Debbugs/DB/Result/BugPackage.pm
update result classes for new relationships
[debbugs.git] / Debbugs / DB / Result / BugPackage.pm
1 use utf8;
2 package Debbugs::DB::Result::BugPackage;
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::BugPackage
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 =back
25
26 =cut
27
28 __PACKAGE__->load_components("InflateColumn::DateTime");
29
30 =head1 TABLE: C<bug_package>
31
32 =cut
33
34 __PACKAGE__->table("bug_package");
35
36 =head1 ACCESSORS
37
38 =head2 bug
39
40   data_type: 'integer'
41   is_nullable: 1
42
43 =head2 pkg_id
44
45   data_type: 'integer'
46   is_nullable: 1
47
48 =head2 pkg_type
49
50   data_type: 'text'
51   is_nullable: 1
52
53 =head2 package
54
55   data_type: 'text'
56   is_nullable: 1
57
58 =cut
59
60 __PACKAGE__->add_columns(
61   "bug",
62   { data_type => "integer", is_nullable => 1 },
63   "pkg_id",
64   { data_type => "integer", is_nullable => 1 },
65   "pkg_type",
66   { data_type => "text", is_nullable => 1 },
67   "package",
68   { data_type => "text", is_nullable => 1 },
69 );
70
71
72 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-27 18:54:20
73 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:593NXq7J5AFjjfFjMLXIvw
74
75
76 # You can replace this text with custom code or comments, and it will be preserved on regeneration
77 1;