address some issues with Pg producer and quoting
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Generator / DDL / PostgreSQL.pm
CommitLineData
2230ed2a 1package SQL::Translator::Generator::DDL::PostgreSQL;
2
3=head1 NAME
4
5SQL::Translator::Generator::DDL::PostgreSQL - A Moo based PostgreSQL DDL generation
6engine.
7
8=head1 DESCRIPTION
9
10I<documentation volunteers needed>
11
12=cut
13use Moo;
14
15has quote_chars => (is => 'rw', default => sub { +[qw(" ")] } );
16
17with 'SQL::Translator::Generator::Role::Quote';
18
19sub name_sep { q(.) }
20
211;
22
23=head1 AUTHORS
24
25See the included AUTHORS file:
26L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
27
28=head1 COPYRIGHT
29
30Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
31
32=head1 LICENSE
33
34This code is free software and may be distributed under the same terms as Perl
35itself.
36
37=cut