]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugSrcpackage.pm
Merge branch 'mouseify'
[debbugs.git] / Debbugs / DB / Result / BugSrcpackage.pm
index c733f17ffc4f803316cf1bc08670a2a263f299d5..d5b6540923921333a8350ec522d15f6db719cf97 100644 (file)
@@ -6,7 +6,7 @@ package Debbugs::DB::Result::BugSrcpackage;
 
 =head1 NAME
 
-Debbugs::DB::Result::BugSrcpackage
+Debbugs::DB::Result::BugSrcpackage - Bug <-> source package 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_srcpackage>
 
@@ -35,42 +37,46 @@ __PACKAGE__->table("bug_srcpackage");
 
 =head1 ACCESSORS
 
-=head2 bug_id
+=head2 bug
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
-=head2 src_pkg_id
+Bug id (matches bug)
+
+=head2 src_pkg
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Source package id (matches src_pkg)
+
 =cut
 
 __PACKAGE__->add_columns(
-  "bug_id",
+  "bug",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
-  "src_pkg_id",
+  "src_pkg",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
 );
 
 =head1 UNIQUE CONSTRAINTS
 
-=head2 C<bug_srcpackage_id_pkg_id>
+=head2 C<bug_srcpackage_id_pkg>
 
 =over 4
 
-=item * L</bug_id>
+=item * L</bug>
 
-=item * L</src_pkg_id>
+=item * L</src_pkg>
 
 =back
 
 =cut
 
-__PACKAGE__->add_unique_constraint("bug_srcpackage_id_pkg_id", ["bug_id", "src_pkg_id"]);
+__PACKAGE__->add_unique_constraint("bug_srcpackage_id_pkg", ["bug", "src_pkg"]);
 
 =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 src_pkg
@@ -100,14 +106,19 @@ Related object: L<Debbugs::DB::Result::SrcPkg>
 __PACKAGE__->belongs_to(
   "src_pkg",
   "Debbugs::DB::Result::SrcPkg",
-  { id => "src_pkg_id" },
-  { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
+  { id => "src_pkg" },
+  { is_deferrable => 0, on_delete => "CASCADE", on_update => "CASCADE" },
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 21:09:18
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ukA5dsM3UFiuOoDauTZN/A
+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2017-03-04 10:59:03
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5SduyMaGHABDrX19Cxg4fg
 
+sub sqlt_deploy_hook {
+    my ($self, $sqlt_table) = @_;
+    $sqlt_table->add_index(name => 'bug_srcpackage_src_pkg_idx',
+                          fields => [qw(src_pkg)],
+                         );
+}
 
-# You can replace this text with custom code or comments, and it will be preserved on regeneration
 1;