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,99 @@ package Hydra::Schema::BuildProducts;
use strict;
use warnings;
use base 'DBIx::Class';
use base 'DBIx::Class::Core';
=head1 NAME
Hydra::Schema::BuildProducts
=cut
__PACKAGE__->load_components("Core");
__PACKAGE__->table("BuildProducts");
=head1 ACCESSORS
=head2 build
data_type: integer
default_value: undef
is_foreign_key: 1
is_nullable: 0
size: undef
=head2 productnr
data_type: integer
default_value: undef
is_nullable: 0
size: undef
=head2 type
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 subtype
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 filesize
data_type: integer
default_value: undef
is_nullable: 1
size: undef
=head2 sha1hash
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 sha256hash
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 path
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 name
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 description
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 defaultpath
data_type: text
default_value: undef
is_nullable: 1
size: undef
=cut
__PACKAGE__->add_columns(
"build",
{
@@ -91,12 +180,22 @@ __PACKAGE__->add_columns(
},
);
__PACKAGE__->set_primary_key("build", "productnr");
__PACKAGE__->belongs_to("build", "Hydra::Schema::Builds", { id => "build" });
=head1 RELATIONS
=head2 build
Type: belongs_to
Related object: L<Hydra::Schema::Builds>
=cut
__PACKAGE__->belongs_to("build", "Hydra::Schema::Builds", { id => "build" }, {});
# Created by DBIx::Class::Schema::Loader v0.04999_09 @ 2009-11-17 16:04:13
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6wJ0KJAILATio3ELRefU5Q
# Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-02-25 10:29:41
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:5XWD8BZb3WeSJwKirHGhWA
# You can replace this text with custom content, and it will be preserved on regeneration
1;