X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FBindType.pm;fp=t%2Flib%2FDBICTest%2FSchema%2FBindType.pm;h=e25ad92034a58909a6caaaab9ec81d9c376658cb;hb=fe0708a2d68b5d34b6bc6f7e70164c3e569f1dd0;hp=5670f2f30aef7615e01ac62297b8056a4bacf647;hpb=01272eb81fe3a43e0a2f7befa465cc669945d543;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/BindType.pm b/t/lib/DBICTest/Schema/BindType.pm index 5670f2f..e25ad92 100644 --- a/t/lib/DBICTest/Schema/BindType.pm +++ b/t/lib/DBICTest/Schema/BindType.pm @@ -1,4 +1,4 @@ -package # hide from PAUSE +package # hide from PAUSE DBICTest::Schema::BindType; use base qw/DBICTest::BaseResult/; @@ -22,6 +22,10 @@ __PACKAGE__->add_columns( data_type => 'clob', is_nullable => 1, }, + 'a_memo' => { + data_type => 'memo', + is_nullable => 1, + }, ); __PACKAGE__->set_primary_key('id');