X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FArtist.pm;h=87991885a25e009c70925f53196b4985d216bf29;hb=6e399b4faae26e6661c8bd734a31e619c97b78b8;hp=cf6eb3aa1df8cbc6f207900d50a5555fba3767e1;hpb=665256a6662526fe0488aa09e2d99339f0b9b96f;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Artist.pm b/t/lib/DBICTest/Schema/Artist.pm index cf6eb3a..8799188 100644 --- a/t/lib/DBICTest/Schema/Artist.pm +++ b/t/lib/DBICTest/Schema/Artist.pm @@ -12,12 +12,14 @@ __PACKAGE__->source_info({ __PACKAGE__->add_columns( 'artistid' => { data_type => 'integer', - is_auto_increment => 1 + is_auto_increment => 1, + bind_attributes => { testkey1 => 1}, }, 'name' => { data_type => 'varchar', size => 100, is_nullable => 1, + bind_attributes => {testkey2 =>2}, }, ); __PACKAGE__->set_primary_key('artistid');