so apparently I dont need this anymore. Awesome
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / NoPrimaryKey.pm
diff --git a/t/lib/DBICTest/Schema/NoPrimaryKey.pm b/t/lib/DBICTest/Schema/NoPrimaryKey.pm
deleted file mode 100644 (file)
index cb79178..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-package # hide from PAUSE 
-    DBICTest::Schema::NoPrimaryKey;
-
-use base qw/DBICTest::BaseResult/;
-
-__PACKAGE__->table('noprimarykey');
-__PACKAGE__->add_columns(
-  'foo' => { data_type => 'integer' },
-  'bar' => { data_type => 'integer' },
-  'baz' => { data_type => 'integer' },
-);
-
-__PACKAGE__->add_unique_constraint(foo_bar => [ qw/foo bar/ ]);
-
-1;