X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FEmployee.pm;h=35f6075819b3798304bd7d3f0a3d6237c1ea0e7c;hb=68888c09820ea25810c03cdc7748ee374a7772b2;hp=30c2bcabcb485f62af9ab401c7d79ae05fe9fbf0;hpb=b33d634cea9b716716da207eae749100014853c0;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Employee.pm b/t/lib/DBICTest/Schema/Employee.pm index 30c2bca..35f6075 100644 --- a/t/lib/DBICTest/Schema/Employee.pm +++ b/t/lib/DBICTest/Schema/Employee.pm @@ -32,6 +32,10 @@ __PACKAGE__->add_columns( size => 100, is_nullable => 1, }, + encoded => { + data_type => 'integer', + is_nullable => 1, + }, ); __PACKAGE__->set_primary_key('employee_id'); @@ -40,4 +44,8 @@ __PACKAGE__->position_column('position'); # Do not add unique constraints here - different groups are used throughout # the ordered tests +__PACKAGE__->belongs_to (secretkey => 'DBICTest::Schema::Encoded', 'encoded', { + join_type => 'left' +}); + 1;