1 package SGN
::Schema
::Snpprop
;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 use base
'DBIx::Class::Core';
18 __PACKAGE__
->table("snpprop");
27 sequence: 'sgn.snpprop_snpprop_id_seq'
53 __PACKAGE__
->add_columns(
56 data_type
=> "integer",
57 is_auto_increment
=> 1,
59 sequence
=> "sgn.snpprop_snpprop_id_seq",
62 { data_type
=> "integer", is_foreign_key
=> 1, is_nullable
=> 1 },
64 { data_type
=> "varchar", is_nullable
=> 0, size
=> 255 },
66 { data_type
=> "integer", is_nullable
=> 1 },
68 { data_type
=> "integer", is_nullable
=> 1 },
70 __PACKAGE__
->set_primary_key("snpprop_id");
78 Related object: L<SGN::Schema::Snp>
82 __PACKAGE__
->belongs_to(
85 { snp_id
=> "snp_id" },
89 on_delete
=> "CASCADE",
90 on_update
=> "CASCADE",
95 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
96 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GGWqOxLl9yAsP+lY6vtD6A
99 # You can replace this text with custom content, and it will be preserved on regeneration