so apparently I dont need this anymore. Awesome
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / Producer.pm
diff --git a/t/lib/DBICTest/Schema/Producer.pm b/t/lib/DBICTest/Schema/Producer.pm
deleted file mode 100644 (file)
index c2fa611..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-package # hide from PAUSE 
-    DBICTest::Schema::Producer;
-
-use base qw/DBICTest::BaseResult/;
-
-__PACKAGE__->table('producer');
-__PACKAGE__->add_columns(
-  'producerid' => {
-    data_type => 'integer',
-    is_auto_increment => 1
-  },
-  'name' => {
-    data_type => 'varchar',
-    size      => 100,
-  },
-);
-__PACKAGE__->set_primary_key('producerid');
-__PACKAGE__->add_unique_constraint(prod_name => [ qw/name/ ]);
-
-__PACKAGE__->has_many(
-    producer_to_cd => 'DBICTest::Schema::CD_to_Producer' => 'producer'
-);
-__PACKAGE__->many_to_many('cds', 'producer_to_cd', 'cd');
-1;