Fixes to Tree::AdjacencyList, and working tests.
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / LinerNotes.pm
index 442a5c1..013cf91 100644 (file)
@@ -1,9 +1,18 @@
-package DBICTest::Schema::LinerNotes;
+package # hide from PAUSE 
+    DBICTest::Schema::LinerNotes;
 
 use base qw/DBIx::Class::Core/;
 
 DBICTest::Schema::LinerNotes->table('liner_notes');
-DBICTest::Schema::LinerNotes->add_columns(qw/liner_id notes/);
+DBICTest::Schema::LinerNotes->add_columns(
+  'liner_id' => {
+    data_type => 'integer',
+  },
+  'notes' => {
+    data_type => 'varchar',
+    size      => 100,
+  },
+);
 DBICTest::Schema::LinerNotes->set_primary_key('liner_id');
 
 1;