From: Justin Hunter Date: Fri, 3 Jul 2009 21:56:19 +0000 (-0700) Subject: basic Producer roles X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7e1795914a927453e299fcb450e659a2ccbdeb95;p=dbsrgits%2FSQL-Translator-2.0-ish.git basic Producer roles --- diff --git a/lib/SQL/Translator/Producer/PostgreSQL.pm b/lib/SQL/Translator/Producer/PostgreSQL.pm new file mode 100644 index 0000000..93e7d19 --- /dev/null +++ b/lib/SQL/Translator/Producer/PostgreSQL.pm @@ -0,0 +1,5 @@ +package SQL::Translator::Producer::PostgreSQL; +use namespace::autoclean; +use Moose::Role; + +1; diff --git a/lib/SQL/Translator/Producer/SQLite.pm b/lib/SQL/Translator/Producer/SQLite.pm new file mode 100644 index 0000000..aa29b8f --- /dev/null +++ b/lib/SQL/Translator/Producer/SQLite.pm @@ -0,0 +1,5 @@ +package SQL::Translator::Producer::SQLite; +use namespace::autoclean; +use Moose::Role; + +1;