]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BinAssociation.pm
update for correspondent in maintainer
[debbugs.git] / Debbugs / DB / Result / BinAssociation.pm
index 357a802c60ff0db8d56ca91f54c271d59578a809..7f32065d773a96a8bd363fc7f4b239d7e0e8a87e 100644 (file)
@@ -6,7 +6,7 @@ package Debbugs::DB::Result::BinAssociation;
 
 =head1 NAME
 
-Debbugs::DB::Result::BinAssociation
+Debbugs::DB::Result::BinAssociation - Binary <-> suite associations
 
 =cut
 
@@ -42,18 +42,24 @@ __PACKAGE__->table("bin_associations");
   is_nullable: 0
   sequence: 'bin_associations_id_seq'
 
+Binary <-> suite association id
+
 =head2 suite
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Suite id (matches suite)
+
 =head2 bin
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Binary version id (matches bin_ver)
+
 =head2 created
 
   data_type: 'timestamp with time zone'
@@ -61,6 +67,8 @@ __PACKAGE__->table("bin_associations");
   is_nullable: 0
   original: {default_value => \"now()"}
 
+Time this binary package entered this suite
+
 =head2 modified
 
   data_type: 'timestamp with time zone'
@@ -68,6 +76,8 @@ __PACKAGE__->table("bin_associations");
   is_nullable: 0
   original: {default_value => \"now()"}
 
+Time this entry was modified
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -124,7 +134,7 @@ __PACKAGE__->belongs_to(
   "bin",
   "Debbugs::DB::Result::BinVer",
   { id => "bin" },
-  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
+  { is_deferrable => 0, on_delete => "CASCADE", on_update => "CASCADE" },
 );
 
 =head2 suite
@@ -139,12 +149,12 @@ __PACKAGE__->belongs_to(
   "suite",
   "Debbugs::DB::Result::Suite",
   { id => "suite" },
-  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
+  { is_deferrable => 0, on_delete => "CASCADE", on_update => "CASCADE" },
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-25 00:09:07
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/cCrHn40eoiD6aOPmXU8dw
+# Created by DBIx::Class::Schema::Loader v0.07036 @ 2013-10-09 20:23:58
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:zEtAfQAP6UdXRqAF3PaBGA
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration