changed FileColumn to InflateColumn::File
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / TreeLike.pm
index 73f9143..297cfc6 100644 (file)
@@ -12,7 +12,8 @@ __PACKAGE__->add_columns(
  },
 );
 __PACKAGE__->set_primary_key(qw/id/);
-__PACKAGE__->belongs_to('parent', 'DBICTest::Schema::TreeLike',
+__PACKAGE__->belongs_to('parent', 'TreeLike',
                           { 'foreign.id' => 'self.parent' });
+__PACKAGE__->has_many('children', 'TreeLike', { 'foreign.parent' => 'self.id' });
 
 1;