Bumping version to 1.61
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / XML.pm
CommitLineData
5f56cfe9 1package SQL::Translator::Producer::XML;
2
b1e30bf6 3=pod
4
5=head1 NAME
6
7SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
8
56435d6f 9=head1 DESCRIPTION
b1e30bf6 10
ea93df61 11Previous versions of SQL::Translator included an XML producer, but the
12namespace has since been further subdivided. Therefore, this module is
8c5efe6b 13now just an alias to the XML::SQLFairy producer.
b1e30bf6 14
56435d6f 15=head1 SEE ALSO
16
17SQL::Translator::Producer::XML::SQLFairy.
18
b1e30bf6 19=head1 AUTHOR
20
f997b9ab 21Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
b1e30bf6 22
23=cut
24
5f56cfe9 25use strict;
f27f9229 26use warnings;
0c04c5a2 27our $DEBUG;
752a0ffc 28our $VERSION = '1.61';
5f56cfe9 29$DEBUG = 1 unless defined $DEBUG;
30
31use SQL::Translator::Producer::XML::SQLFairy;
32
b1e30bf6 33*produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
5f56cfe9 34
351;