1 package SGN
::Schema
::FamilyBuild
;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 use base
'DBIx::Class::Core';
14 SGN::Schema::FamilyBuild
18 __PACKAGE__
->table("family_build");
22 =head2 family_build_id
27 sequence: 'family_build_family_build_id_seq'
41 data_type: 'double precision'
46 data_type: 'timestamp'
47 default_value: ('now'::text)::timestamp(6) with time zone
59 __PACKAGE__
->add_columns(
62 data_type
=> "bigint",
63 is_auto_increment
=> 1,
65 sequence
=> "family_build_family_build_id_seq",
68 { data_type
=> "bigint", is_nullable
=> 1 },
70 { data_type
=> "bigint", is_nullable
=> 1 },
72 { data_type
=> "double precision", is_nullable
=> 1 },
75 data_type
=> "timestamp",
76 default_value
=> \"('now'::text
)::timestamp
(6) with
time zone
",
80 { data_type => "char
", default_value => "C
", is_nullable => 1, size => 1 },
82 __PACKAGE__->set_primary_key("family_build_id
");
90 Related object: L<SGN::Schema::Family>
94 __PACKAGE__->has_many(
96 "SGN
::Schema
::Family
",
97 { "foreign
.family_build_id
" => "self
.family_build_id
" },
98 { cascade_copy => 0, cascade_delete => 0 },
102 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
103 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QaGnsmu4vvcnLGzPzibWjg
106 # You can replace this text with custom content, and it will be preserved on regeneration