X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FDummy.pm;fp=t%2Flib%2FDBICTest%2FSchema%2FDummy.pm;h=0000000000000000000000000000000000000000;hb=8b2c6f39484dd3dd94e1b7ed5ebe63f2ba98d0fb;hp=2a8396d214d5f345360a3839e48c57975754af22;hpb=459a67e3365a32a2a88374d81f7b9cc5f8f8412e;p=dbsrgits%2FDBIx-Class-DeploymentHandler.git diff --git a/t/lib/DBICTest/Schema/Dummy.pm b/t/lib/DBICTest/Schema/Dummy.pm deleted file mode 100644 index 2a8396d..0000000 --- a/t/lib/DBICTest/Schema/Dummy.pm +++ /dev/null @@ -1,23 +0,0 @@ -package # hide from PAUSE - DBICTest::Schema::Dummy; - -use base qw/DBICTest::BaseResult/; - -use strict; -use warnings; - -__PACKAGE__->table('dummy'); -__PACKAGE__->add_columns( - 'id' => { - data_type => 'integer', - is_auto_increment => 1 - }, - 'gittery' => { - data_type => 'varchar', - size => 100, - is_nullable => 1, - }, -); -__PACKAGE__->set_primary_key('id'); - -1;