]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BinVer.pm
update result classes for new relationships
[debbugs.git] / Debbugs / DB / Result / BinVer.pm
index 0ac574580b2687871a9fe3a21f560b87bf06e601..688b7fe0713f9f977f26c0ecbbdf93bd584b7da0 100644 (file)
@@ -6,7 +6,7 @@ package Debbugs::DB::Result::BinVer;
 
 =head1 NAME
 
-Debbugs::DB::Result::BinVer
+Debbugs::DB::Result::BinVer - Binary versions
 
 =cut
 
@@ -42,29 +42,39 @@ __PACKAGE__->table("bin_ver");
   is_nullable: 0
   sequence: 'bin_ver_id_seq'
 
-=head2 bin_pkg_id
+Binary version id
+
+=head2 bin_pkg
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Binary package id (matches bin_pkg)
+
 =head2 src_ver_id
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Source version (matchines src_ver)
+
 =head2 arch_id
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Architecture id (matches arch)
+
 =head2 ver
 
   data_type: 'debversion'
   is_nullable: 0
 
+Binary version
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -75,7 +85,7 @@ __PACKAGE__->add_columns(
     is_nullable       => 0,
     sequence          => "bin_ver_id_seq",
   },
-  "bin_pkg_id",
+  "bin_pkg",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
   "src_ver_id",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
@@ -103,7 +113,7 @@ __PACKAGE__->set_primary_key("id");
 
 =over 4
 
-=item * L</bin_pkg_id>
+=item * L</bin_pkg>
 
 =item * L</arch_id>
 
@@ -113,10 +123,7 @@ __PACKAGE__->set_primary_key("id");
 
 =cut
 
-__PACKAGE__->add_unique_constraint(
-  "bin_ver_bin_pkg_id_arch_idx",
-  ["bin_pkg_id", "arch_id", "ver"],
-);
+__PACKAGE__->add_unique_constraint("bin_ver_bin_pkg_id_arch_idx", ["bin_pkg", "arch_id", "ver"]);
 
 =head2 C<bin_ver_src_ver_id_arch_idx>
 
@@ -175,7 +182,7 @@ Related object: L<Debbugs::DB::Result::BinPkg>
 __PACKAGE__->belongs_to(
   "bin_pkg",
   "Debbugs::DB::Result::BinPkg",
-  { id => "bin_pkg_id" },
+  { id => "bin_pkg" },
   { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
 );
 
@@ -195,8 +202,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-25 00:09:07
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ID7wx8HJaYZgpdhHqCq8GQ
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-27 18:54:20
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3K+5M1Rohq6AB4uLnVco+w
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration