X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FArtist.pm;h=c772c5b2557eb8a0c16493e24de899b78b9024b9;hb=a0dd86798d8077ff1035441888165367b45572e5;hp=a5425765d1147da41989ed7ba44d515a2a6cb78d;hpb=a085381e61284d46d374ada169f52ae6e35fc9bb;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Artist.pm b/t/lib/DBICTest/Schema/Artist.pm index a542576..c772c5b 100644 --- a/t/lib/DBICTest/Schema/Artist.pm +++ b/t/lib/DBICTest/Schema/Artist.pm @@ -23,6 +23,11 @@ __PACKAGE__->add_columns( data_type => 'integer', default_value => 13, }, + charfield => { + data_type => 'char', + size => 10, + is_nullable => 1, + }, ); __PACKAGE__->set_primary_key('artistid');