X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FDB%2FResult%2FBugUserTag.pm;fp=Debbugs%2FDB%2FResult%2FBugUserTag.pm;h=0000000000000000000000000000000000000000;hb=1e6633a3780f4fd53fc4303852e84d13cdad2dc6;hp=6d83c63aac94b8d88794dbae1cbb41bdf747bf43;hpb=466f7faff129a5699c7674f59900a92aa256175d;p=debbugs.git diff --git a/Debbugs/DB/Result/BugUserTag.pm b/Debbugs/DB/Result/BugUserTag.pm deleted file mode 100644 index 6d83c63..0000000 --- a/Debbugs/DB/Result/BugUserTag.pm +++ /dev/null @@ -1,123 +0,0 @@ -use utf8; -package Debbugs::DB::Result::BugUserTag; - -# Created by DBIx::Class::Schema::Loader -# DO NOT MODIFY THE FIRST PART OF THIS FILE - -=head1 NAME - -Debbugs::DB::Result::BugUserTag - Bug <-> user tag mapping - -=cut - -use strict; -use warnings; - -use base 'DBIx::Class::Core'; - -=head1 COMPONENTS LOADED - -=over 4 - -=item * L - -=item * L - -=back - -=cut - -__PACKAGE__->load_components("InflateColumn::DateTime", "TimeStamp"); - -=head1 TABLE: C - -=cut - -__PACKAGE__->table("bug_user_tag"); - -=head1 ACCESSORS - -=head2 bug - - data_type: 'integer' - is_foreign_key: 1 - is_nullable: 0 - -Bug id (matches bug) - -=head2 user_tag - - data_type: 'integer' - is_foreign_key: 1 - is_nullable: 0 - -=cut - -__PACKAGE__->add_columns( - "bug", - { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, - "user_tag", - { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, -); - -=head1 UNIQUE CONSTRAINTS - -=head2 C - -=over 4 - -=item * L - -=item * L - -=back - -=cut - -__PACKAGE__->add_unique_constraint("bug_user_tag_bug_tag", ["bug", "user_tag"]); - -=head1 RELATIONS - -=head2 bug - -Type: belongs_to - -Related object: L - -=cut - -__PACKAGE__->belongs_to( - "bug", - "Debbugs::DB::Result::Bug", - { id => "bug" }, - { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" }, -); - -=head2 user_tag - -Type: belongs_to - -Related object: L - -=cut - -__PACKAGE__->belongs_to( - "user_tag", - "Debbugs::DB::Result::UserTag", - { id => "user_tag" }, - { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" }, -); - - -# 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)], - ); -} - -1;