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