The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
package TestSchema::TestObjectExtra;
our $VERSION = '0.003';

use base 'DBIx::Class';
use Mixin::ExtraFields::Driver::DBIC -setup => { table => 'object_info' };

__PACKAGE__->belongs_to(object => 'TestSchema::TestObject',
  { 'foreign.id' => 'self.object_id' },
);

1;