so apparently I dont need this anymore. Awesome
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / SelfRef.pm
diff --git a/t/lib/DBICTest/Schema/SelfRef.pm b/t/lib/DBICTest/Schema/SelfRef.pm
deleted file mode 100644 (file)
index c0e1476..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package # hide from PAUSE 
-    DBICTest::Schema::SelfRef;
-
-use base qw/DBICTest::BaseResult/;
-
-__PACKAGE__->table('self_ref');
-__PACKAGE__->add_columns(
-  'id' => {
-    data_type => 'integer',
-    is_auto_increment => 1,
-  },
-  'name' => {
-    data_type => 'varchar',
-    size      => 100,
-  },
-);
-__PACKAGE__->set_primary_key('id');
-
-__PACKAGE__->has_many( aliases => 'DBICTest::Schema::SelfRefAlias' => 'self_ref' );
-
-1;