X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FLinerNotes.pm;h=168f311dd98eaee9f6672111d40b98e43a2cda4d;hb=096f421241;hp=1f35b4b63ce30af0ca2ee30e515fb3e0cc8a4848;hpb=0009fa4905ab7f4585c4b470bfe049666bce8e17;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/LinerNotes.pm b/t/lib/DBICTest/Schema/LinerNotes.pm index 1f35b4b..168f311 100644 --- a/t/lib/DBICTest/Schema/LinerNotes.pm +++ b/t/lib/DBICTest/Schema/LinerNotes.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::LinerNotes; +package # hide from PAUSE + DBICTest::Schema::LinerNotes; use base qw/DBIx::Class::Core/; @@ -9,8 +10,12 @@ DBICTest::Schema::LinerNotes->add_columns( }, 'notes' => { data_type => 'varchar', + size => 100, }, ); DBICTest::Schema::LinerNotes->set_primary_key('liner_id'); +DBICTest::Schema::LinerNotes->belongs_to( + 'cd', 'DBICTest::Schema::CD', 'liner_id' +); 1;