]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/Arch.pm
update for correspondent in maintainer
[debbugs.git] / Debbugs / DB / Result / Arch.pm
index bc50ae405f869623a2ecaf8295872ed4f4ff5cba..ef26e3cf89860aa4b19a952a09fce308779e65cc 100644 (file)
@@ -6,7 +6,7 @@ package Debbugs::DB::Result::Arch;
 
 =head1 NAME
 
-Debbugs::DB::Result::Arch
+Debbugs::DB::Result::Arch - Architectures
 
 =cut
 
@@ -42,11 +42,15 @@ __PACKAGE__->table("arch");
   is_nullable: 0
   sequence: 'arch_id_seq'
 
+Architecture id
+
 =head2 arch
 
   data_type: 'text'
   is_nullable: 0
 
+Architecture name
+
 =cut
 
 __PACKAGE__->add_columns(
@@ -104,9 +108,24 @@ __PACKAGE__->has_many(
   { cascade_copy => 0, cascade_delete => 0 },
 );
 
+=head2 bug_status_caches
+
+Type: has_many
+
+Related object: L<Debbugs::DB::Result::BugStatusCache>
+
+=cut
+
+__PACKAGE__->has_many(
+  "bug_status_caches",
+  "Debbugs::DB::Result::BugStatusCache",
+  { "foreign.arch" => "self.id" },
+  { cascade_copy => 0, cascade_delete => 0 },
+);
+
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-23 17:41:43
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kL57i2SauNRCt/bK6ACRKg
+# Created by DBIx::Class::Schema::Loader v0.07036 @ 2013-10-09 20:27:54
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Lp58Ajmt1p8qgL26cbgHZA
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration