Added the basic for multi column support. Original tests still pass, but the multicol...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Employee.pm
CommitLineData
80021def 1package # hide from PAUSE
4e298a80 2 DBICTest::Schema::Employee;
80021def 3
ff657a43 4use base 'DBIx::Class::Core';
80021def 5
ff657a43 6__PACKAGE__->load_components(qw( Ordered ));
80021def 7
38e48163 8__PACKAGE__->table('employee');
80021def 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 },
169bb185 18 group_id => {
19 data_type => 'integer',
20 is_nullable => 1,
21 },
80021def 22 name => {
23 data_type => 'varchar',
24 size => 100,
25 is_nullable => 1,
26 },
27);
28
29__PACKAGE__->set_primary_key('employee_id');
30__PACKAGE__->position_column('position');
31
dc66dea1 32#__PACKAGE__->add_unique_constraint(position_group => [ qw/position group_id/ ]);
92b0ca0f 33
80021def 34__PACKAGE__->mk_classdata('field_name_for', {
35 employee_id => 'primary key',
36 position => 'list position',
169bb185 37 group_id => 'collection column',
80021def 38 name => 'employee name',
39});
40
411;