]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugUserTag.pm
switch to compatibility level 12
[debbugs.git] / Debbugs / DB / Result / BugUserTag.pm
index 3363b62157bbc48eb85b8408f9ba0e7b37e48c54..6d83c63aac94b8d88794dbae1cbb41bdf747bf43 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,9 +109,15 @@ __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
+
 
+sub sqlt_deploy_hook {
+    my ($self, $sqlt_table) = @_;
+    $sqlt_table->add_index(name => 'bug_user_tag_tag',
+                          fields => [qw(user_tag)],
+                         );
+}
 
-# You can replace this text with custom code or comments, and it will be preserved on regeneration
 1;