]> git.donarmstrong.com Git - debbugs.git/blob - Debbugs/DB/Result/BinaryVersion.pm
Add bin and source associations
[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 =cut
64
65 __PACKAGE__->add_columns(
66   "src_pkg",
67   { data_type => "text", is_nullable => 1 },
68   "src_ver",
69   { data_type => "debversion", is_nullable => 1 },
70   "bin_pkg",
71   { data_type => "text", is_nullable => 1 },
72   "arch",
73   { data_type => "text", is_nullable => 1 },
74   "bin_ver",
75   { data_type => "debversion", is_nullable => 1 },
76 );
77
78
79 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-23 23:44:18
80 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:04R2st85wn634BqbBU2/qQ
81
82
83 # You can replace this text with custom code or comments, and it will be preserved on regeneration
84 1;