move attributes to Translator
Justin Hunter [Wed, 19 Aug 2009 09:25:12 +0000 (02:25 -0700)]
lib/SQL/Translator/Producer.pm

index 51324f9..f9ca01a 100644 (file)
@@ -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',