From: Justin Hunter Date: Wed, 19 Aug 2009 09:25:12 +0000 (-0700) Subject: move attributes to Translator X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cc0543d1b18e90a88df368c3d4f9500ea1e95a84;p=dbsrgits%2FSQL-Translator-2.0-ish.git move attributes to Translator --- diff --git a/lib/SQL/Translator/Producer.pm b/lib/SQL/Translator/Producer.pm index 51324f9..f9ca01a 100644 --- a/lib/SQL/Translator/Producer.pm +++ b/lib/SQL/Translator/Producer.pm @@ -4,20 +4,6 @@ class SQL::Translator::Producer { use MooseX::Types::Moose qw(Bool HashRef Str); use SQL::Translator::Types qw(Column Table Translator); - has 'no_comments' => ( - isa => Bool, - is => 'rw', - lazy => 1, - default => 0 - ); - - has 'drop_table' => ( - isa => Bool, - is => 'rw', - lazy => 1, - default => 1 - ); - has 'data_type_mapping' => ( isa => HashRef, is => 'ro',