X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FDB%2FResult%2FBugUserTag.pm;h=6d83c63aac94b8d88794dbae1cbb41bdf747bf43;hb=466f7faff129a5699c7674f59900a92aa256175d;hp=3363b62157bbc48eb85b8408f9ba0e7b37e48c54;hpb=c8690ed41732f180f9340917d567cbda827e79be;p=debbugs.git diff --git a/Debbugs/DB/Result/BugUserTag.pm b/Debbugs/DB/Result/BugUserTag.pm index 3363b62..6d83c63 100644 --- a/Debbugs/DB/Result/BugUserTag.pm +++ b/Debbugs/DB/Result/BugUserTag.pm @@ -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 - -=back - -=cut - -__PACKAGE__->set_primary_key("id"); - =head1 UNIQUE CONSTRAINTS =head2 C @@ -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;