59a946703bdc0100735f63548a189292489ed5aa
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Employee.pm
1 package # hide from PAUSE
2     DBICTest::Schema::Employee;
3
4 use base qw/DBICTest::BaseResult/;
5
6 __PACKAGE__->load_components(qw( Ordered ));
7
8 __PACKAGE__->table('employee');
9
10 __PACKAGE__->add_columns(
11     employee_id => {
12         data_type => 'integer',
13         is_auto_increment => 1
14     },
15     position => {
16         data_type => 'integer',
17     },
18     group_id => {
19         data_type => 'integer',
20         is_nullable => 1,
21     },
22     group_id_2 => {
23         data_type => 'integer',
24         is_nullable => 1,
25     },
26     group_id_3 => {
27         data_type => 'integer',
28         is_nullable => 1,
29     },
30     name => {
31         data_type => 'varchar',
32         size      => 100,
33         is_nullable => 1,
34     },
35     encoded => {
36         data_type => 'integer',
37         is_nullable => 1,
38     },
39 );
40
41 __PACKAGE__->set_primary_key('employee_id');
42 __PACKAGE__->position_column('position');
43
44 # Do not add unique constraints here - different groups are used throughout
45 # the ordered tests
46
47 __PACKAGE__->belongs_to (secretkey => 'DBICTest::Schema::Encoded', 'encoded', {
48   join_type => 'left'
49 });
50
51 1;