]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugBlock.pm
update result classes for new relationships
[debbugs.git] / Debbugs / DB / Result / BugBlock.pm
index 074b29b06ab1290426c7dc7d303a5495ff28ce18..273eca037dbfdbd5fa08e8e3055296302673a237 100644 (file)
@@ -6,7 +6,7 @@ package Debbugs::DB::Result::BugBlock;
 
 =head1 NAME
 
-Debbugs::DB::Result::BugBlock
+Debbugs::DB::Result::BugBlock - Bugs which block other bugs
 
 =cut
 
@@ -35,34 +35,64 @@ __PACKAGE__->table("bug_blocks");
 
 =head1 ACCESSORS
 
-=head2 bug_id
+=head2 id
+
+  data_type: 'integer'
+  is_auto_increment: 1
+  is_nullable: 0
+  sequence: 'bug_blocks_id_seq'
+
+=head2 bug
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Bug number
+
 =head2 blocks
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Bug number which is blocked by bug
+
 =cut
 
 __PACKAGE__->add_columns(
-  "bug_id",
+  "id",
+  {
+    data_type         => "integer",
+    is_auto_increment => 1,
+    is_nullable       => 0,
+    sequence          => "bug_blocks_id_seq",
+  },
+  "bug",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
   "blocks",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
 );
 
+=head1 PRIMARY KEY
+
+=over 4
+
+=item * L</id>
+
+=back
+
+=cut
+
+__PACKAGE__->set_primary_key("id");
+
 =head1 UNIQUE CONSTRAINTS
 
 =head2 C<bug_blocks_bug_id_blocks_idx>
 
 =over 4
 
-=item * L</bug_id>
+=item * L</bug>
 
 =item * L</blocks>
 
@@ -70,7 +100,7 @@ __PACKAGE__->add_columns(
 
 =cut
 
-__PACKAGE__->add_unique_constraint("bug_blocks_bug_id_blocks_idx", ["bug_id", "blocks"]);
+__PACKAGE__->add_unique_constraint("bug_blocks_bug_id_blocks_idx", ["bug", "blocks"]);
 
 =head1 RELATIONS
 
@@ -100,13 +130,13 @@ Related object: L<Debbugs::DB::Result::Bug>
 __PACKAGE__->belongs_to(
   "bug",
   "Debbugs::DB::Result::Bug",
-  { id => "bug_id" },
+  { id => "bug" },
   { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 10:25:29
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:adv4v35ZqedSG4L0CFNPMg
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-27 18:54:20
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QswG/RKpqrXvpj74XiV0WQ
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration