]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugVer.pm
Switch to severity table
[debbugs.git] / Debbugs / DB / Result / BugVer.pm
index 42eb1cc853e181aa67b0a70c2afa491b464bdfb9..9d2bdcc4eb0672dbf3d6ad6e05efca5d38c0a9c5 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,7 +155,7 @@ Related object: L<Debbugs::DB::Result::Bug>
 __PACKAGE__->belongs_to(
   "bug",
   "Debbugs::DB::Result::Bug",
-  { id => "bug_id" },
+  { id => "bug" },
   { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" },
 );
 
@@ -170,7 +170,7 @@ 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,
     join_type     => "LEFT",
@@ -200,8 +200,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# 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.07025 @ 2013-03-25 18:43:53
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:t2bjlM8I5vRChrNgknwI4g
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration