X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FBindType.pm;h=f8d7e67b3b38806f11da345ea43649246b74ab6c;hb=74b5397c077a964ed301d18f5ccda72afa91f353;hp=5670f2f30aef7615e01ac62297b8056a4bacf647;hpb=660cf1be74795a5a5784f413741816413a724c1a;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/BindType.pm b/t/lib/DBICTest/Schema/BindType.pm index 5670f2f..f8d7e67 100644 --- a/t/lib/DBICTest/Schema/BindType.pm +++ b/t/lib/DBICTest/Schema/BindType.pm @@ -1,6 +1,9 @@ -package # hide from PAUSE +package # hide from PAUSE DBICTest::Schema::BindType; +use warnings; +use strict; + use base qw/DBICTest::BaseResult/; __PACKAGE__->table('bindtype_test'); @@ -18,10 +21,22 @@ __PACKAGE__->add_columns( data_type => 'blob', is_nullable => 1, }, + 'blob2' => { + data_type => 'blob', + is_nullable => 1, + }, 'clob' => { data_type => 'clob', is_nullable => 1, }, + 'clob2' => { + data_type => 'clob', + is_nullable => 1, + }, + 'a_memo' => { + data_type => 'memo', + is_nullable => 1, + }, ); __PACKAGE__->set_primary_key('id');