X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FSelfRef.pm;h=ec715c780de61c28e1fa4c6bab20488002df3ec3;hb=28d4067a8514340167194b3397931a6cdb93be26;hp=2817b67e943df1f66d5cd062cfa2402f3c9efafb;hpb=c6d74d3ead7c87c6c63997b8e39fa638f4851559;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/lib/DBICTest/Schema/SelfRef.pm b/t/lib/DBICTest/Schema/SelfRef.pm index 2817b67..ec715c7 100644 --- a/t/lib/DBICTest/Schema/SelfRef.pm +++ b/t/lib/DBICTest/Schema/SelfRef.pm @@ -11,8 +11,11 @@ __PACKAGE__->add_columns( }, 'name' => { data_type => 'varchar', + size => 100, }, ); __PACKAGE__->set_primary_key('id'); +__PACKAGE__->has_many( aliases => 'DBICTest::Schema::SelfRefAlias' => 'self_ref' ); + 1;