Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / SubmitUser.pm
blobbdf347f09f380e078422bf6c169d88d5cd747ac2
1 package SGN::Schema::SubmitUser;
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::SubmitUser
16 =cut
18 __PACKAGE__->table("submit_user");
20 =head1 ACCESSORS
22 =head2 submit_user_id
24 data_type: 'integer'
25 is_auto_increment: 1
26 is_nullable: 0
27 sequence: 'submit_user_submit_user_id_seq'
29 =head2 submit_code
31 data_type: 'varchar'
32 is_nullable: 1
33 size: 6
35 =head2 username
37 data_type: 'varchar'
38 is_nullable: 1
39 size: 20
41 =head2 password
43 data_type: 'varchar'
44 is_nullable: 1
45 size: 20
47 =head2 name
49 data_type: 'varchar'
50 is_nullable: 1
51 size: 80
53 =head2 email_address
55 data_type: 'varchar'
56 is_nullable: 1
57 size: 255
59 =head2 phone_number
61 data_type: 'varchar'
62 is_nullable: 1
63 size: 20
65 =head2 organization
67 data_type: 'varchar'
68 is_nullable: 1
69 size: 80
71 =head2 contact_information
73 data_type: 'text'
74 is_nullable: 1
76 =head2 disabled
78 data_type: 'bigint'
79 is_nullable: 1
81 =head2 confirm_code
83 data_type: 'varchar'
84 is_nullable: 1
85 size: 16
87 =head2 sp_person_id
89 data_type: 'integer'
90 is_nullable: 1
92 =cut
94 __PACKAGE__->add_columns(
95 "submit_user_id",
97 data_type => "integer",
98 is_auto_increment => 1,
99 is_nullable => 0,
100 sequence => "submit_user_submit_user_id_seq",
102 "submit_code",
103 { data_type => "varchar", is_nullable => 1, size => 6 },
104 "username",
105 { data_type => "varchar", is_nullable => 1, size => 20 },
106 "password",
107 { data_type => "varchar", is_nullable => 1, size => 20 },
108 "name",
109 { data_type => "varchar", is_nullable => 1, size => 80 },
110 "email_address",
111 { data_type => "varchar", is_nullable => 1, size => 255 },
112 "phone_number",
113 { data_type => "varchar", is_nullable => 1, size => 20 },
114 "organization",
115 { data_type => "varchar", is_nullable => 1, size => 80 },
116 "contact_information",
117 { data_type => "text", is_nullable => 1 },
118 "disabled",
119 { data_type => "bigint", is_nullable => 1 },
120 "confirm_code",
121 { data_type => "varchar", is_nullable => 1, size => 16 },
122 "sp_person_id",
123 { data_type => "integer", is_nullable => 1 },
125 __PACKAGE__->set_primary_key("submit_user_id");
128 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
129 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:H8ElPRe7I8jN7AiPGWYTlw
132 # You can replace this text with custom content, and it will be preserved on regeneration