]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugUserTag.pm
update to new schema which includes many_to_many relationships
[debbugs.git] / Debbugs / DB / Result / BugUserTag.pm
index 3363b62157bbc48eb85b8408f9ba0e7b37e48c54..113a36a1bccc98372cf72b1f0f9edbc9097726f8 100644 (file)
@@ -37,13 +37,6 @@ __PACKAGE__->table("bug_user_tag");
 
 =head1 ACCESSORS
 
-=head2 id
-
-  data_type: 'integer'
-  is_auto_increment: 1
-  is_nullable: 0
-  sequence: 'bug_user_tag_id_seq'
-
 =head2 bug
 
   data_type: 'integer'
@@ -61,31 +54,12 @@ Bug id (matches bug)
 =cut
 
 __PACKAGE__->add_columns(
-  "id",
-  {
-    data_type         => "integer",
-    is_auto_increment => 1,
-    is_nullable       => 0,
-    sequence          => "bug_user_tag_id_seq",
-  },
   "bug",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
   "user_tag",
   { 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_user_tag_bug_tag>
@@ -135,8 +109,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07045 @ 2016-09-24 14:51:07
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bczKcbFkWt98BDvXLdhpcg
+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2017-03-04 10:59:03
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jZngUCQ1eBBcfXd/jWCKGA
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration