so apparently I dont need this anymore. Awesome
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / OneKey.pm
diff --git a/t/lib/DBICTest/Schema/OneKey.pm b/t/lib/DBICTest/Schema/OneKey.pm
deleted file mode 100644 (file)
index bd0e148..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-package # hide from PAUSE 
-    DBICTest::Schema::OneKey;
-
-use base qw/DBICTest::BaseResult/;
-
-__PACKAGE__->table('onekey');
-__PACKAGE__->add_columns(
-  'id' => {
-    data_type => 'integer',
-    is_auto_increment => 1,
-  },
-  'artist' => {
-    data_type => 'integer',
-  },
-  'cd' => {
-    data_type => 'integer',
-  },
-);
-__PACKAGE__->set_primary_key('id');
-
-
-1;