X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FEmployee.pm;h=30c2bcabcb485f62af9ab401c7d79ae05fe9fbf0;hb=b33d634cea9b716716da207eae749100014853c0;hp=258cab9b59f64efe69ca47ec3cd41d8621458870;hpb=9beded8a680abbc0bd7776ec47f9fb69d7392d5c;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Employee.pm b/t/lib/DBICTest/Schema/Employee.pm index 258cab9..30c2bca 100644 --- a/t/lib/DBICTest/Schema/Employee.pm +++ b/t/lib/DBICTest/Schema/Employee.pm @@ -1,7 +1,7 @@ package # hide from PAUSE DBICTest::Schema::Employee; -use base 'DBIx::Class::Core'; +use base qw/DBICTest::BaseResult/; __PACKAGE__->load_components(qw( Ordered )); @@ -37,13 +37,7 @@ __PACKAGE__->add_columns( __PACKAGE__->set_primary_key('employee_id'); __PACKAGE__->position_column('position'); -#__PACKAGE__->add_unique_constraint(position_group => [ qw/position group_id/ ]); - -__PACKAGE__->mk_classdata('field_name_for', { - employee_id => 'primary key', - position => 'list position', - group_id => 'collection column', - name => 'employee name', -}); +# Do not add unique constraints here - different groups are used throughout +# the ordered tests 1;