BuzzSaw
view release on metacpan or search on metacpan
lib/BuzzSaw/DB/Schema/Result/ExtraInfo.pm view on Meta::CPAN
{
data_type => 'character varying',
default_value => undef,
is_nullable => 0,
size => 20,
},
'val',
{
data_type => 'character varying',
default_value => undef,
is_nullable => 0,
size => 100,
},
'event',
{
data_type => 'integer',
default_value => undef,
is_foreign_key => 1,
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key('id');
__PACKAGE__->add_unique_constraint( 'name_event_val', ['name', 'event', 'val' ] );
=head1 RELATIONS
=head2 event
Type: belongs_to
Related object: L<BuzzSaw::DB::Schema::Result::Event>
=cut
__PACKAGE__->belongs_to(
'event',
'BuzzSaw::DB::Schema::Result::Event',
{ id => 'event' },
{},
);
1;
__END__
=head1 DEPENDENCIES
This module requires L<DBIx::Class>.
=head1 SEE ALSO
L<BuzzSaw::DB>, L<BuzzSaw::DB::Schema>
=head1 PLATFORMS
This is the list of platforms on which we have tested this
software. We expect this software to work on any Unix-like platform
which is supported by Perl.
ScientificLinux6
=head1 BUGS AND LIMITATIONS
Please report any bugs or problems (or praise!) to bugs@lcfg.org,
feedback and patches are also always very welcome.
=head1 AUTHOR
Stephen Quinney <squinney@inf.ed.ac.uk>
=head1 LICENSE AND COPYRIGHT
Copyright (C) 2012 University of Edinburgh. All rights reserved.
This library is free software; you can redistribute it and/or modify
it under the terms of the GPL, version 2 or later.
=cut
( run in 0.476 second using v1.01-cache-2.11-cpan-d8267643d1d )