use utf8;
package Hydra::Schema::Result::BuildProducts;
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->load_components("+Hydra::Component::ToJSON");
__PACKAGE__->table("buildproducts");
__PACKAGE__->add_columns(
"build",
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
"productnr",
{ data_type => "integer", is_nullable => 0 },
"type",
{ data_type => "text", is_nullable => 0 },
"subtype",
{ data_type => "text", is_nullable => 0 },
"filesize",
{ data_type => "bigint", is_nullable => 1 },
"sha256hash",
{ data_type => "text", is_nullable => 1 },
"path",
{ data_type => "text", is_nullable => 1 },
"name",
{ data_type => "text", is_nullable => 0 },
"defaultpath",
{ data_type => "text", is_nullable => 1 },
);
__PACKAGE__->set_primary_key("build", "productnr");
__PACKAGE__->belongs_to(
"build",
"Hydra::Schema::Result::Builds",
{ id => "build" },
{ is_deferrable => 0, on_delete => "CASCADE", on_update => "NO ACTION" },
);
my %hint = (
columns => [
'type',
'subtype',
'name',
'filesize',
'sha256hash',
'path',
'defaultpath'
],
);
sub json_hint {
return \%hint;
}
1;