Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / EnzymeRestrictionSite.pm
blobd945a2e066c867d2bc10e3a6f3eaf5fcb0924326
1 package SGN::Schema::EnzymeRestrictionSite;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6 use strict;
7 use warnings;
9 use base 'DBIx::Class::Core';
12 =head1 NAME
14 SGN::Schema::EnzymeRestrictionSite
16 =cut
18 __PACKAGE__->table("enzyme_restriction_sites");
20 =head1 ACCESSORS
22 =head2 enzyme_id
24 data_type: 'integer'
25 is_nullable: 1
27 =head2 restriction_site
29 data_type: 'text'
30 is_nullable: 1
32 =head2 enzyme_restriction_sites_id
34 data_type: 'integer'
35 is_auto_increment: 1
36 is_nullable: 0
37 sequence: 'enzyme_restriction_sites_enzyme_restriction_sites_id_seq'
39 =cut
41 __PACKAGE__->add_columns(
42 "enzyme_id",
43 { data_type => "integer", is_nullable => 1 },
44 "restriction_site",
45 { data_type => "text", is_nullable => 1 },
46 "enzyme_restriction_sites_id",
48 data_type => "integer",
49 is_auto_increment => 1,
50 is_nullable => 0,
51 sequence => "enzyme_restriction_sites_enzyme_restriction_sites_id_seq",
54 __PACKAGE__->set_primary_key("enzyme_restriction_sites_id");
57 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
58 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SYxEfX3A5/LD9KaY5DERug
61 # You can replace this text with custom content, and it will be preserved on regeneration