X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FEmployee.pm;h=78b3d167ea32e0eca8d6de79f85f72d509ad3370;hb=362c66db4c21efb954313e957bb6e5f8003ffa36;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..78b3d16 100644 --- a/t/lib/DBICTest/Schema/Employee.pm +++ b/t/lib/DBICTest/Schema/Employee.pm @@ -1,9 +1,9 @@ package # hide from PAUSE DBICTest::Schema::Employee; -use base 'DBIx::Class'; +use base 'DBIx::Class::Core'; -__PACKAGE__->load_components(qw( Ordered PK::Auto Core )); +__PACKAGE__->load_components(qw( Ordered )); __PACKAGE__->table('employee'); @@ -29,7 +29,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__->add_unique_constraint(position_group => [ qw/position group_id/ ]); __PACKAGE__->mk_classdata('field_name_for', { employee_id => 'primary key',