SQLT behaves sanely in scalar context, no need for stupid version detections (ribasus...
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / Artist.pm
index ae92606..a542576 100644 (file)
@@ -19,6 +19,10 @@ __PACKAGE__->add_columns(
     size      => 100,
     is_nullable => 1,
   },
+  rank => {
+    data_type => 'integer',
+    default_value => 13,
+  },
 );
 __PACKAGE__->set_primary_key('artistid');