2011-12-05 13:29:29 +00:00
|
|
|
use utf8;
|
2010-03-05 15:41:10 +00:00
|
|
|
package Hydra::Schema::JobsetEvalMembers;
|
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader
|
|
|
|
# DO NOT MODIFY THE FIRST PART OF THIS FILE
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Hydra::Schema::JobsetEvalMembers
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2010-03-05 15:41:10 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use base 'DBIx::Class::Core';
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
=head1 TABLE: C<JobsetEvalMembers>
|
2010-03-05 15:41:10 +00:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
__PACKAGE__->table("JobsetEvalMembers");
|
|
|
|
|
|
|
|
=head1 ACCESSORS
|
|
|
|
|
|
|
|
=head2 eval
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
data_type: 'integer'
|
2010-03-05 15:41:10 +00:00
|
|
|
is_foreign_key: 1
|
|
|
|
is_nullable: 0
|
|
|
|
|
|
|
|
=head2 build
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
data_type: 'integer'
|
2010-03-05 15:41:10 +00:00
|
|
|
is_foreign_key: 1
|
|
|
|
is_nullable: 0
|
|
|
|
|
|
|
|
=head2 isnew
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
data_type: 'integer'
|
2010-03-05 15:41:10 +00:00
|
|
|
is_nullable: 0
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
__PACKAGE__->add_columns(
|
|
|
|
"eval",
|
2011-12-05 13:29:29 +00:00
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
|
2010-03-05 15:41:10 +00:00
|
|
|
"build",
|
2011-12-05 13:29:29 +00:00
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
|
2010-03-05 15:41:10 +00:00
|
|
|
"isnew",
|
2011-12-05 13:29:29 +00:00
|
|
|
{ data_type => "integer", is_nullable => 0 },
|
2010-03-05 15:41:10 +00:00
|
|
|
);
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
=head1 PRIMARY KEY
|
2010-03-05 15:41:10 +00:00
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
=over 4
|
2010-03-05 15:41:10 +00:00
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
=item * L</eval>
|
2010-03-05 15:41:10 +00:00
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
=item * L</build>
|
|
|
|
|
|
|
|
=back
|
2010-03-05 15:41:10 +00:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
__PACKAGE__->set_primary_key("eval", "build");
|
|
|
|
|
|
|
|
=head1 RELATIONS
|
2010-03-05 15:41:10 +00:00
|
|
|
|
|
|
|
=head2 build
|
|
|
|
|
|
|
|
Type: belongs_to
|
|
|
|
|
|
|
|
Related object: L<Hydra::Schema::Builds>
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
__PACKAGE__->belongs_to("build", "Hydra::Schema::Builds", { id => "build" }, {});
|
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
=head2 eval
|
|
|
|
|
|
|
|
Type: belongs_to
|
|
|
|
|
|
|
|
Related object: L<Hydra::Schema::JobsetEvals>
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
__PACKAGE__->belongs_to("eval", "Hydra::Schema::JobsetEvals", { id => "eval" }, {});
|
|
|
|
|
2010-03-05 15:41:10 +00:00
|
|
|
|
2011-12-05 13:29:29 +00:00
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07014 @ 2011-12-05 14:15:43
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0K4lDPUQeK04SEXS5yBbeA
|
2010-03-05 15:41:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration
|
|
|
|
1;
|