X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FEmployee.pm;h=59a946703bdc0100735f63548a189292489ed5aa;hb=851437691480515dfef50e5e170b77ff51d07620;hp=4ebeffd750fc9850d58a7feca1bb05d474378723;hpb=38e481637aa7e86b0257373e334457d5c23748fb;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/lib/DBICTest/Schema/Employee.pm b/t/lib/DBICTest/Schema/Employee.pm index 4ebeffd..59a9467 100644 --- a/t/lib/DBICTest/Schema/Employee.pm +++ b/t/lib/DBICTest/Schema/Employee.pm @@ -1,9 +1,9 @@ -package # hide from PAUSE +package # hide from PAUSE DBICTest::Schema::Employee; -use base 'DBIx::Class'; +use base qw/DBICTest::BaseResult/; -__PACKAGE__->load_components(qw( Ordered PK::Auto Core )); +__PACKAGE__->load_components(qw( Ordered )); __PACKAGE__->table('employee'); @@ -19,23 +19,33 @@ __PACKAGE__->add_columns( data_type => 'integer', is_nullable => 1, }, + group_id_2 => { + data_type => 'integer', + is_nullable => 1, + }, + group_id_3 => { + data_type => 'integer', + is_nullable => 1, + }, name => { data_type => 'varchar', size => 100, is_nullable => 1, }, + encoded => { + data_type => 'integer', + is_nullable => 1, + }, ); __PACKAGE__->set_primary_key('employee_id'); __PACKAGE__->position_column('position'); -__PACKAGE__->add_unique_constraint(position_group => [ qw/position group_id/ ]); +# Do not add unique constraints here - different groups are used throughout +# the ordered tests -__PACKAGE__->mk_classdata('field_name_for', { - employee_id => 'primary key', - position => 'list position', - group_id => 'collection column', - name => 'employee name', +__PACKAGE__->belongs_to (secretkey => 'DBICTest::Schema::Encoded', 'encoded', { + join_type => 'left' }); 1;