]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugVer.pm
update result classes for new relationships
[debbugs.git] / Debbugs / DB / Result / BugVer.pm
index 3b1e21e114417ec522bcef27c6f36c43c6f07d31..d35f3e6fd4cec80e3ce78fdb7cb948313a7918b6 100644 (file)
@@ -35,35 +35,45 @@ __PACKAGE__->table("bug_ver");
 
 =head1 ACCESSORS
 
-=head2 bug_id
+=head2 bug
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 0
 
+Bug number
+
 =head2 ver_string
 
   data_type: 'text'
   is_nullable: 1
 
-=head2 src_pkg_id
+Version string
+
+=head2 src_pkg
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 1
 
+Source package id (matches src_pkg table)
+
 =head2 src_ver_id
 
   data_type: 'integer'
   is_foreign_key: 1
   is_nullable: 1
 
+Source package version id (matches src_ver table)
+
 =head2 found
 
   data_type: 'boolean'
   default_value: true
   is_nullable: 0
 
+True if this is a found version; false if this is a fixed version
+
 =head2 creation
 
   data_type: 'timestamp with time zone'
@@ -71,6 +81,8 @@ __PACKAGE__->table("bug_ver");
   is_nullable: 0
   original: {default_value => \"now()"}
 
+Time that this entry was created
+
 =head2 last_modified
 
   data_type: 'timestamp with time zone'
@@ -78,14 +90,16 @@ __PACKAGE__->table("bug_ver");
   is_nullable: 0
   original: {default_value => \"now()"}
 
+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 },
@@ -109,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>
 
@@ -124,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
@@ -141,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" },
 );
 
@@ -156,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",
@@ -186,8 +200,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-12-03 15:57:07
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YRlFlDUKGtk69o3KPHM1zQ
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-27 18:54:20
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/WX1pwdsAUjQK28CwCaDQw
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration