]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugBinpackage.pm
add binpkg/srcpkg relation table
[debbugs.git] / Debbugs / DB / Result / BugBinpackage.pm
index 63223df86af138c8db0ec45bace36859ba79ace9..68a1137fa3ac16b9fb1169585d16f22f7f458ec6 100644 (file)
@@ -37,13 +37,6 @@ __PACKAGE__->table("bug_binpackage");
 
 =head1 ACCESSORS
 
-=head2 id
-
-  data_type: 'integer'
-  is_auto_increment: 1
-  is_nullable: 0
-  sequence: 'bug_binpackage_id_seq'
-
 =head2 bug
 
   data_type: 'integer'
@@ -63,32 +56,27 @@ Binary package id (matches bin_pkg)
 =cut
 
 __PACKAGE__->add_columns(
-  "id",
-  {
-    data_type         => "integer",
-    is_auto_increment => 1,
-    is_nullable       => 0,
-    sequence          => "bug_binpackage_id_seq",
-  },
   "bug",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
   "bin_pkg",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
 );
 
-=head1 PRIMARY KEY
+=head1 UNIQUE CONSTRAINTS
+
+=head2 C<bug_binpackage_bin_pkg_bug_idx>
 
 =over 4
 
-=item * L</id>
+=item * L</bin_pkg>
+
+=item * L</bug>
 
 =back
 
 =cut
 
-__PACKAGE__->set_primary_key("id");
-
-=head1 UNIQUE CONSTRAINTS
+__PACKAGE__->add_unique_constraint("bug_binpackage_bin_pkg_bug_idx", ["bin_pkg", "bug"]);
 
 =head2 C<bug_binpackage_id_pkg>
 
@@ -137,9 +125,15 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2014-11-30 21:56:51
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FZAi6kX8ICe/ZJI0JEqZLg
+# Created by DBIx::Class::Schema::Loader v0.07049 @ 2019-01-01 17:29:32
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:gEYqmJfiJJtRYFzIYut3Fg
+
 
+sub sqlt_deploy_hook {
+    my ($self, $sqlt_table) = @_;
+    $sqlt_table->add_index(name => 'bug_binpackage_bin_pkg_idx',
+                          fields => [qw(bin_pkg)],
+                         );
+}
 
-# You can replace this text with custom code or comments, and it will be preserved on regeneration
 1;