(no commit message)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Artist.pm
index cf6eb3a..8799188 100644 (file)
@@ -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');