Release commit for 1.62
[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
33d693c3 13
2230ed2a 14use Moo;
15
0c425150 16has quote_chars => (
17 is => 'rw',
18 default => sub { +[qw(" ")] },
19 trigger => sub { $_[0]->clear_escape_char },
20);
2230ed2a 21
22with 'SQL::Translator::Generator::Role::Quote';
23
24sub name_sep { q(.) }
25
261;
27
28=head1 AUTHORS
29
30See the included AUTHORS file:
31L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
32
33=head1 COPYRIGHT
34
35Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
36
37=head1 LICENSE
38
39This code is free software and may be distributed under the same terms as Perl
40itself.
41
42=cut