package SQL::Translator::Generator::DDL::SQLServer;
-# AUTHOR: Arthur Axel fREW Schmidt
-# Copyright: Same as Perl 5
+=head1 NAME
+
+SQL::Translator::Generator::DDL::SQLServer - A Moo based MS SQL Server DDL
+generation engine.
+
+=head1 DESCRIPTION
+
+I<documentation volunteers needed>
+
+=cut
use Moo;
use SQL::Translator::Schema::Constants;
1;
+=head1 AUTHORS
+
+See the included AUTHORS file:
+L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
+
+=head1 LICENSE
+
+This code is free software and may be distributed under the same terms as Perl
+itself.
+
+=cut
package SQL::Translator::Generator::DDL::SQLite;
-# AUTHOR: Arthur Axel fREW Schmidt
-# Copyright: Same as Perl 5
+=head1 NAME
+SQL::Translator::Generator::DDL::SQLite - A Moo based SQLite DDL generation
+engine.
+
+=head1 DESCRIPTION
+
+I<documentation volunteers needed>
+
+=cut
use Moo;
has quote_chars => (is=>'ro', default=>sub { +[qw(" ")] } );
1;
+=head1 AUTHORS
+
+See the included AUTHORS file:
+L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
+
+=head1 LICENSE
+
+This code is free software and may be distributed under the same terms as Perl
+itself.
+
+=cut
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<documentation volunteers needed>
+
+=cut
use Moo::Role;
use SQL::Translator::Utils qw(header_comment);
sub header_comments { header_comment() . "\n" if $_[0]->add_comments }
1;
+
+=head1 AUTHORS
+
+See the included AUTHORS file:
+L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
+
+=head1 LICENSE
+
+This code is free software and may be distributed under the same terms as Perl
+itself.
+
+=cut
-package # hide from pause
- SQL::Translator::Generator::Role::Quote;
-
-# AUTHOR: Arthur Axel fREW Schmidt
-# Copyright: Same as Perl 5
+package SQL::Translator::Generator::Role::Quote;
use Moo::Role;
+=head1 NAME
+
+SQL::Translator::Generator::Role::Quote - Role for dealing with identifier
+quoting.
+
+=head1 DESCRIPTION
+
+I<documentation volunteers needed>
+
+=cut
+
requires qw(quote_chars name_sep);
sub quote {
}
1;
+
+=head1 AUTHORS
+
+See the included AUTHORS file:
+L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
+
+=head1 LICENSE
+
+This code is free software and may be distributed under the same terms as Perl
+itself.
+
+=cut
1;
-=pod
-
-=head1 SQLServer Create Table Syntax
-
-TODO
-
-
=head1 NAME
SQL::Translator::Producer::SQLServer - MS SQLServer producer for SQL::Translator
=head1 DESCRIPTION
-B<WARNING>B This is still fairly early code, basically a hacked version of the
-Sybase Producer (thanks Sam, Paul and Ken for doing the real work ;-)
+This is currently a thin wrapper around the nextgen
+L<SQL::Translator::Generator::DDL::SQLServer> DDL maker.
=head1 Extra Attributes
=head1 SEE ALSO
-SQL::Translator.
+L<SQL::Translator>
=head1 AUTHORS
-Mark Addison E<lt>grommit@users.sourceforge.netE<gt> - Bulk of code from
-Sybase producer, I just tweaked it for SQLServer. Thanks.
+See the included AUTHORS file:
+L<http://search.cpan.org/dist/SQL-Translator/AUTHORS>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2012 the SQL::Translator L</AUTHORS> as listed above.
+
+=head1 LICENSE
+
+This code is free software and may be distributed under the same terms as Perl
+itself.
=cut