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