Fix MC bug reported by felix
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Employee.pm
index 30c2bca..35f6075 100644 (file)
@@ -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;