Merge branch 'master' into persona

This commit is contained in:
Eelco Dolstra
2013-11-06 12:35:36 +01:00
7 changed files with 51 additions and 7 deletions

View File

@ -179,4 +179,17 @@ __PACKAGE__->belongs_to(
# Created by DBIx::Class::Schema::Loader v0.07033 @ 2013-10-08 13:08:15
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OaJPzRM+8XGsu3eIkqeYEw
my %hint = (
columns => [
'type',
'uri',
'value',
'revision',
],
);
sub json_hint {
return \%hint;
}
1;

View File

@ -153,5 +153,22 @@ __PACKAGE__->belongs_to(
# Created by DBIx::Class::Schema::Loader v0.07033 @ 2013-06-13 01:54:50
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+0LkZiaRL5tGJvbLxnwD/g
# You can replace this text with custom content, and it will be preserved on regeneration
my %hint = (
columns => [
'type',
'subtype',
'name',
'filesize',
'sha1hash',
'sha256hash',
'description',
'path',
'defaultpath'
],
);
sub json_hint {
return \%hint;
}
1;

View File

@ -619,7 +619,9 @@ my %hint = (
'releasename'
],
eager_relations => {
buildoutputs => 'name'
buildoutputs => 'name',
buildinputs_builds => 'name',
buildproducts => 'productnr',
}
);