| Bracket documentation | Contained in the Bracket distribution. |
Bracket::Schema::Result::RegionScore
data_type: INT default_value: undef is_foreign_key: 1 is_nullable: 0 size: 11
data_type: INT default_value: undef is_foreign_key: 1 is_nullable: 0 size: 11
data_type: INT default_value: undef is_nullable: 0 size: 11
Type: belongs_to
Related object: Bracket::Schema::Result::Player
Type: belongs_to
Related object: Bracket::Schema::Result::Region
| Bracket documentation | Contained in the Bracket distribution. |
package Bracket::Schema::Result::RegionScore; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE use strict; use warnings; use base 'DBIx::Class::Core';
__PACKAGE__->table("region_scores");
__PACKAGE__->add_columns( "player", { data_type => "INT", default_value => undef, is_foreign_key => 1, is_nullable => 0, size => 11, }, "region", { data_type => "INT", default_value => undef, is_foreign_key => 1, is_nullable => 0, size => 11, }, "points", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11 }, ); __PACKAGE__->set_primary_key("player", "region");
__PACKAGE__->belongs_to( "player", "Bracket::Schema::Result::Player", { id => "player" }, {}, );
__PACKAGE__->belongs_to( "region", "Bracket::Schema::Result::Region", { id => "region" }, {}, ); # Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-03-15 11:45:32 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:UiBOetVBSxDOkCf4HJpl2g # You can replace this text with custom content, and it will be preserved on regeneration 1;