B:BD[
4.3341] → [
4.3341:3342]
B:BD[
4.3342] → [
6.24631:24672]
∅:D[
6.24672] → [
4.3380:3409]
B:BD[
4.3380] → [
4.3380:3409]
B:BD[
4.3409] → [
6.24673:25155]
∅:D[
6.25155] → [
4.3409:3449]
B:BD[
4.3409] → [
4.3409:3449]
B:BD[
4.3449] → [
7.17185:17288]
∅:D[
7.17288] → [
4.3509:3523]
B:BD[
4.3509] → [
4.3509:3523]
B:BD[
4.3523] → [
7.17289:17392]
∅:D[
7.17392] → [
4.3583:3601]
B:BD[
4.3583] → [
4.3583:3601]
B:BD[
4.3601] → [
7.17393:17496]
∅:D[
7.17496] → [
4.3661:3675]
B:BD[
4.3661] → [
4.3661:3675]
B:BD[
4.3675] → [
7.17497:17600]
B:BD[
7.17600] → [
8.0:101]
∅:D[
8.101] → [
4.3735:3780]
∅:D[
7.17600] → [
4.3735:3780]
B:BD[
4.3735] → [
4.3735:3780]
B:BD[
4.3780] → [
6.25156:25260]
∅:D[
6.25260] → [
9.4011:4034]
B:BD[
4.3780] → [
9.4011:4034]
∅:D[
10.3222] → [
9.4034:4049]
B:BD[
9.4034] → [
9.4034:4049]
B:BD[
9.4049] → [
11.4145:4175]
∅:D[
11.4175] → [
9.4079:4124]
B:BD[
9.4079] → [
9.4079:4124]
B:BD[
9.4124] → [
12.2712:2715]
B:BD[
12.2715] → [
6.25261:25345]
∅:D[
6.25345] → [
12.2715:2823]
B:BD[
12.2715] → [
12.2715:2823]
∅:D[
12.2823] → [
9.4124:4127]
B:BD[
9.4124] → [
9.4124:4127]
∅:D[
9.4127] → [
4.3780:3782]
B:BD[
4.3780] → [
4.3780:3782]
B:BD[
4.3782] → [
6.25346:25488]
∅:D[
6.25488] → [
4.3925:3926]
B:BD[
4.3925] → [
4.3925:3926]
=head1 NAME
Hydra::Schema::Users
=cut
__PACKAGE__->table("Users");
=head1 ACCESSORS
=head2 username
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 fullname
data_type: text
default_value: undef
is_nullable: 1
size: undef
=head2 emailaddress
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 password
data_type: text
default_value: undef
is_nullable: 0
size: undef
=head2 emailonerror
data_type: integer
default_value: 0
is_nullable: 0
size: undef
=cut
__PACKAGE__->add_columns(
"username",
{
data_type => "text",
default_value => undef,
is_nullable => 0,
size => undef,
},
"fullname",
{
data_type => "text",
default_value => undef,
is_nullable => 1,
size => undef,
},
"emailaddress",
{
data_type => "text",
default_value => undef,
is_nullable => 0,
size => undef,
},
"password",
{
data_type => "text",
default_value => undef,
is_nullable => 0,
size => undef,
},
"emailonerror",
{ data_type => "integer", default_value => 0, is_nullable => 0, size => undef },
);
__PACKAGE__->set_primary_key("username");
=head1 RELATIONS
=head2 userroles
Type: has_many
Related object: L<Hydra::Schema::UserRoles>
=cut
__PACKAGE__->has_many(
"userroles",
"Hydra::Schema::UserRoles",
{ "foreign.username" => "self.username" },
);
=head2 projects
Type: has_many
Related object: L<Hydra::Schema::Projects>
=cut
__PACKAGE__->has_many(
"projects",
"Hydra::Schema::Projects",
{ "foreign.owner" => "self.username" },
);
# Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-02-25 10:29:41
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:vHluB+s1FkpJBPWmpv+wUQ