generated schema with new dbix class schema loader, grrrrrr

This commit is contained in:
Rob Vermaas
2010-02-25 09:50:04 +00:00
parent 87ea0cb2b9
commit 4dccd3c620
23 changed files with 2043 additions and 301 deletions

View File

@ -6,10 +6,101 @@ package Hydra::Schema::BuildInputs;
use strict;
use warnings;
use base 'DBIx::Class';
use base 'DBIx::Class::Core';
=head1 NAME
Hydra::Schema::BuildInputs
=cut
__PACKAGE__->load_components("Core");
__PACKAGE__->table("BuildInputs");
=head1 ACCESSORS
=head2 id
data_type: integer
default_value: undef
is_auto_increment: 1
is_nullable: 0
size: undef
=head2 build
data_type: integer
default_value: undef
is_foreign_key: 1
is_nullable: 1
size: undef
=head2 name
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 type
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 uri
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 revision
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 tag
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 value
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 dependency
data_type: integer
default_value: undef
is_foreign_key: 1
is_nullable: 1
size: undef
=head2 path
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 sha256hash
data_type: text
default_value: undef
is_nullable: 1
size: undef
=cut
__PACKAGE__->add_columns(
"id",
{
@ -93,12 +184,32 @@ __PACKAGE__->add_columns(
},
);
__PACKAGE__->set_primary_key("id");
=head1 RELATIONS
=head2 build
Type: belongs_to
Related object: L<Hydra::Schema::Builds>
=cut
__PACKAGE__->belongs_to(
"build",
"Hydra::Schema::Builds",
{ id => "build" },
{ join_type => "LEFT" },
);
=head2 dependency
Type: belongs_to
Related object: L<Hydra::Schema::Builds>
=cut
__PACKAGE__->belongs_to(
"dependency",
"Hydra::Schema::Builds",
@ -107,8 +218,8 @@ __PACKAGE__->belongs_to(
);
# Created by DBIx::Class::Schema::Loader v0.04999_09 @ 2009-11-17 16:04:13
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:skn8HFEXTvEiL4/6Q+ulvw
# Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-02-25 10:29:41
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:48U7D8+iCPaPc42KJCoQGg
use Hydra::Helper::Nix;