]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugTag.pm
make the pkginfo section a table instead of a long sentence
[debbugs.git] / Debbugs / DB / Result / BugTag.pm
index ca6541f34e69397be6ba1a3ef94712192dc7b844..f5c6c24f4037e16eead8a07860408f5f21f2a4eb 100644 (file)
@@ -6,7 +6,7 @@ package Debbugs::DB::Result::BugTag;
 
 =head1 NAME
 
-Debbugs::DB::Result::BugTag
+Debbugs::DB::Result::BugTag - Bug <-> tag mapping
 
 =cut
 
@@ -21,11 +21,13 @@ use base 'DBIx::Class::Core';
 
 =item * L<DBIx::Class::InflateColumn::DateTime>
 
+=item * L<DBIx::Class::TimeStamp>
+
 =back
 
 =cut
 
-__PACKAGE__->load_components("InflateColumn::DateTime");
+__PACKAGE__->load_components("InflateColumn::DateTime", "TimeStamp");
 
 =head1 TABLE: C<bug_tag>
 
@@ -35,42 +37,46 @@ __PACKAGE__->table("bug_tag");
 
 =head1 ACCESSORS
 
-=head2 bug_id
+=head2 bug
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
-=head2 tag_id
+Bug id (matches bug)
+
+=head2 tag
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Tag id (matches tag)
+
 =cut
 
 __PACKAGE__->add_columns(
-  "bug_id",
+  "bug",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
-  "tag_id",
+  "tag",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
 );
 
 =head1 UNIQUE CONSTRAINTS
 
-=head2 C<bug_tag_bug_tag_id>
+=head2 C<bug_tag_bug_tag>
 
 =over 4
 
-=item * L</bug_id>
+=item * L</bug>
 
-=item * L</tag_id>
+=item * L</tag>
 
 =back
 
 =cut
 
-__PACKAGE__->add_unique_constraint("bug_tag_bug_tag_id", ["bug_id", "tag_id"]);
+__PACKAGE__->add_unique_constraint("bug_tag_bug_tag", ["bug", "tag"]);
 
 =head1 RELATIONS
 
@@ -85,8 +91,8 @@ Related object: L<Debbugs::DB::Result::Bug>
 __PACKAGE__->belongs_to(
   "bug",
   "Debbugs::DB::Result::Bug",
-  { id => "bug_id" },
-  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
+  { id => "bug" },
+  { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
 );
 
 =head2 tag
@@ -100,14 +106,20 @@ Related object: L<Debbugs::DB::Result::Tag>
 __PACKAGE__->belongs_to(
   "tag",
   "Debbugs::DB::Result::Tag",
-  { id => "tag_id" },
-  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
+  { id => "tag" },
+  { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 10:25:29
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CscnquDh4dh3f4LNgRn1Ew
+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2017-03-04 10:59:03
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yyHP5f8zAxn/AdjOCr8WAg
+
 
+sub sqlt_deploy_hook {
+    my ($self, $sqlt_table) = @_;
+    $sqlt_table->add_index(name => 'bug_tag_tag',
+                          fields => [qw(tag)],
+                         );
+}
 
-# You can replace this text with custom code or comments, and it will be preserved on regeneration
 1;