X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator%2FGenerator%2FRole%2FDDL.pm;fp=lib%2FSQL%2FTranslator%2FGenerator%2FRole%2FDDL.pm;h=e7666c744719de8f91430601b76b8d25d6ae5c10;hb=22c0c10f6f2a82042901b965af80f79677a0aa42;hp=1691467847da7a51fbb42aca1dd05d558413e267;hpb=4a9399ae2689294bac4d036f23c884dc1235b865;p=dbsrgits%2FSQL-Translator.git diff --git a/lib/SQL/Translator/Generator/Role/DDL.pm b/lib/SQL/Translator/Generator/Role/DDL.pm index 1691467..e7666c7 100644 --- a/lib/SQL/Translator/Generator/Role/DDL.pm +++ b/lib/SQL/Translator/Generator/Role/DDL.pm @@ -1,7 +1,15 @@ package SQL::Translator::Generator::Role::DDL; -# AUTHOR: Arthur Axel fREW Schmidt -# Copyright: Same as Perl 5 +=head1 NAME + +SQL::Translator::Generator::Role::DDL - Role implementing common parts of +DDL generation. + +=head1 DESCRIPTION + +I + +=cut use Moo::Role; use SQL::Translator::Utils qw(header_comment); @@ -109,3 +117,19 @@ sub nullable { 'NULL' } sub header_comments { header_comment() . "\n" if $_[0]->add_comments } 1; + +=head1 AUTHORS + +See the included AUTHORS file: +L + +=head1 COPYRIGHT + +Copyright (c) 2012 the SQL::Translator L as listed above. + +=head1 LICENSE + +This code is free software and may be distributed under the same terms as Perl +itself. + +=cut