X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Debbugs%2FDB%2FResult%2FBugMessage.pm;h=07a43514636a571c318a230bee17b603741bda68;hb=5bfa3e0c12e9817f784ce1dd27bc18a86655dbc2;hp=d30b445d978c9847428a875cd7151ae3412a2bcb;hpb=54fc7e0edd7b95eda0e49f7d8c6a0d9c6a47baef;p=debbugs.git diff --git a/Debbugs/DB/Result/BugMessage.pm b/Debbugs/DB/Result/BugMessage.pm index d30b445..07a4351 100644 --- a/Debbugs/DB/Result/BugMessage.pm +++ b/Debbugs/DB/Result/BugMessage.pm @@ -35,6 +35,13 @@ __PACKAGE__->table("bug_message"); =head1 ACCESSORS +=head2 id + + data_type: 'integer' + is_auto_increment: 1 + is_nullable: 0 + sequence: 'bug_message_id_seq' + =head2 bug data_type: 'integer' @@ -75,6 +82,13 @@ Time offset was valid =cut __PACKAGE__->add_columns( + "id", + { + data_type => "integer", + is_auto_increment => 1, + is_nullable => 0, + sequence => "bug_message_id_seq", + }, "bug", { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, "message", @@ -87,6 +101,18 @@ __PACKAGE__->add_columns( { data_type => "timestamp with time zone", is_nullable => 1 }, ); +=head1 PRIMARY KEY + +=over 4 + +=item * L + +=back + +=cut + +__PACKAGE__->set_primary_key("id"); + =head1 RELATIONS =head2 bug @@ -120,8 +146,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:WkrYUE1iE8o3fFkzQSkzeQ +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-22 21:34:19 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:v1hxqbRZsqjnYYqfKnuNug # You can replace this text with custom code or comments, and it will be preserved on regeneration