From: Justin Hunter Date: Sat, 22 Aug 2009 21:21:23 +0000 (-0700) Subject: add quote_field_names/quote_table_names X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6127f0bd0cfe33bcbef6467b45b087624c4cfb50;p=dbsrgits%2FSQL-Translator-2.0-ish.git add quote_field_names/quote_table_names --- diff --git a/lib/SQL/Translator.pm b/lib/SQL/Translator.pm index 4e6c57f..1170ab5 100644 --- a/lib/SQL/Translator.pm +++ b/lib/SQL/Translator.pm @@ -57,6 +57,8 @@ class SQL::Translator { has 'no_comments' => (isa => Bool, is => 'rw', default => 0); has 'show_warnings' => (isa => Bool, is => 'rw', default => 1); has 'trace' => (isa => Bool, is => 'rw', default => 0); + has 'quote_table_names' => (isa => Bool, is => 'rw', default => 0); + has 'quote_field_names' => (isa => Bool, is => 'rw', default => 0); has 'version' => (isa => Str, is => 'rw'); has 'filename' => (isa => Str, is => 'rw');