]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugTag.pm
Switch to severity table
[debbugs.git] / Debbugs / DB / Result / BugTag.pm
index 9361bd33ab218946ec6f4ea0afbc032e5efa04cf..d68a93a8176a459ca6bba27e52e438c80a405a8c 100644 (file)
@@ -35,7 +35,14 @@ __PACKAGE__->table("bug_tag");
 
 =head1 ACCESSORS
 
-=head2 bug_id
+=head2 id
+
+  data_type: 'integer'
+  is_auto_increment: 1
+  is_nullable: 0
+  sequence: 'bug_tag_id_seq'
+
+=head2 bug
 
   data_type: 'integer'
   is_foreign_key: 1
@@ -54,19 +61,38 @@ Tag id (matches tag)
 =cut
 
 __PACKAGE__->add_columns(
-  "bug_id",
+  "id",
+  {
+    data_type         => "integer",
+    is_auto_increment => 1,
+    is_nullable       => 0,
+    sequence          => "bug_tag_id_seq",
+  },
+  "bug",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
   "tag_id",
   { 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_tag_bug_tag_id>
 
 =over 4
 
-=item * L</bug_id>
+=item * L</bug>
 
 =item * L</tag_id>
 
@@ -74,7 +100,7 @@ __PACKAGE__->add_columns(
 
 =cut
 
-__PACKAGE__->add_unique_constraint("bug_tag_bug_tag_id", ["bug_id", "tag_id"]);
+__PACKAGE__->add_unique_constraint("bug_tag_bug_tag_id", ["bug", "tag_id"]);
 
 =head1 RELATIONS
 
@@ -89,7 +115,7 @@ 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" },
 );
 
@@ -109,8 +135,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TJLM6fzZRNQXknUuXE8Pvw
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-25 18:43:53
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fGlaYDuI8YCGvA1gY7DNaQ
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration