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