]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugVer.pm
update for correspondent in maintainer
[debbugs.git] / Debbugs / DB / Result / BugVer.pm
index 42eb1cc853e181aa67b0a70c2afa491b464bdfb9..95475f634e5a07e61d032d05286f6b43665582eb 100644 (file)
@@ -35,7 +35,7 @@ __PACKAGE__->table("bug_ver");
 
 =head1 ACCESSORS
 
-=head2 bug_id
+=head2 bug
 
   data_type: 'integer'
   is_foreign_key: 1
@@ -50,7 +50,7 @@ Bug number
 
 Version string
 
-=head2 src_pkg_id
+=head2 src_pkg
 
   data_type: 'integer'
   is_foreign_key: 1
@@ -95,11 +95,11 @@ Time that this entry was modified
 =cut
 
 __PACKAGE__->add_columns(
-  "bug_id",
+  "bug",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
   "ver_string",
   { data_type => "text", is_nullable => 1 },
-  "src_pkg_id",
+  "src_pkg",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
   "src_ver_id",
   { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
@@ -123,11 +123,11 @@ __PACKAGE__->add_columns(
 
 =head1 UNIQUE CONSTRAINTS
 
-=head2 C<bug_ver_bug_id_ver_string_found_idx>
+=head2 C<bug_ver_bug_ver_string_found_idx>
 
 =over 4
 
-=item * L</bug_id>
+=item * L</bug>
 
 =item * L</ver_string>
 
@@ -138,8 +138,8 @@ __PACKAGE__->add_columns(
 =cut
 
 __PACKAGE__->add_unique_constraint(
-  "bug_ver_bug_id_ver_string_found_idx",
-  ["bug_id", "ver_string", "found"],
+  "bug_ver_bug_ver_string_found_idx",
+  ["bug", "ver_string", "found"],
 );
 
 =head1 RELATIONS
@@ -155,8 +155,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 => "RESTRICT", on_update => "CASCADE" },
 );
 
 =head2 src_pkg
@@ -170,11 +170,11 @@ Related object: L<Debbugs::DB::Result::SrcPkg>
 __PACKAGE__->belongs_to(
   "src_pkg",
   "Debbugs::DB::Result::SrcPkg",
-  { id => "src_pkg_id" },
+  { id => "src_pkg" },
   {
-    is_deferrable => 1,
+    is_deferrable => 0,
     join_type     => "LEFT",
-    on_delete     => "CASCADE",
+    on_delete     => "SET NULL",
     on_update     => "CASCADE",
   },
 );
@@ -192,16 +192,16 @@ __PACKAGE__->belongs_to(
   "Debbugs::DB::Result::SrcVer",
   { id => "src_ver_id" },
   {
-    is_deferrable => 1,
+    is_deferrable => 0,
     join_type     => "LEFT",
-    on_delete     => "CASCADE",
+    on_delete     => "SET NULL",
     on_update     => "CASCADE",
   },
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:d+zLb/svrH4BgZjZXT+hdg
+# Created by DBIx::Class::Schema::Loader v0.07036 @ 2013-10-09 20:27:54
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:AlnpfT/8jqREfK5zVfPyPw
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration