]> git.donarmstrong.com Git - debbugs.git/blob - Debbugs/DB/Result/BinaryVersion.pm
update result classes for new relationships
[debbugs.git] / Debbugs / DB / Result / BinaryVersion.pm
1 use utf8;
2 package Debbugs::DB::Result::BinaryVersion;
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::BinaryVersion
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<binary_versions>
31
32 =cut
33
34 __PACKAGE__->table("binary_versions");
35
36 =head1 ACCESSORS
37
38 =head2 src_pkg
39
40   data_type: 'text'
41   is_nullable: 1
42
43 =head2 src_ver
44
45   data_type: 'debversion'
46   is_nullable: 1
47
48 =head2 bin_pkg
49
50   data_type: 'text'
51   is_nullable: 1
52
53 =head2 arch
54
55   data_type: 'text'
56   is_nullable: 1
57
58 =head2 bin_ver
59
60   data_type: 'debversion'
61   is_nullable: 1
62
63 =head2 src_ver_based_on
64
65   data_type: 'debversion'
66   is_nullable: 1
67
68 =head2 src_pkg_based_on
69
70   data_type: 'text'
71   is_nullable: 1
72
73 =cut
74
75 __PACKAGE__->add_columns(
76   "src_pkg",
77   { data_type => "text", is_nullable => 1 },
78   "src_ver",
79   { data_type => "debversion", is_nullable => 1 },
80   "bin_pkg",
81   { data_type => "text", is_nullable => 1 },
82   "arch",
83   { data_type => "text", is_nullable => 1 },
84   "bin_ver",
85   { data_type => "debversion", is_nullable => 1 },
86   "src_ver_based_on",
87   { data_type => "debversion", is_nullable => 1 },
88   "src_pkg_based_on",
89   { data_type => "text", is_nullable => 1 },
90 );
91
92
93 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-27 18:54:20
94 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PiJglTBqLYRIi63gvGWIDQ
95
96
97 # You can replace this text with custom code or comments, and it will be preserved on regeneration
98 1;