so apparently I dont need this anymore. Awesome
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / LinerNotes.pm
diff --git a/t/lib/DBICTest/Schema/LinerNotes.pm b/t/lib/DBICTest/Schema/LinerNotes.pm
deleted file mode 100644 (file)
index 5675f52..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package # hide from PAUSE 
-    DBICTest::Schema::LinerNotes;
-
-use base qw/DBICTest::BaseResult/;
-
-__PACKAGE__->table('liner_notes');
-__PACKAGE__->add_columns(
-  'liner_id' => {
-    data_type => 'integer',
-  },
-  'notes' => {
-    data_type => 'varchar',
-    size      => 100,
-  },
-);
-__PACKAGE__->set_primary_key('liner_id');
-__PACKAGE__->belongs_to(
-  'cd', 'DBICTest::Schema::CD', 'liner_id'
-);
-
-1;