Clean up option parsing and fix identifier quoting in Producer::MySQL
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Generator / DDL / MySQL.pm
CommitLineData
5e48784e 1package SQL::Translator::Generator::DDL::MySQL;
2
3=head1 NAME
4
5SQL::Translator::Generator::DDL::MySQL - A Moo based MySQL DDL generation
6engine.
7
8=head1 DESCRIPTION
9
10I<documentation volunteers needed>
11
12=cut
13
14use Moo;
15
16has quote_chars => ( is => 'ro', default => sub { +[qw(` `)] } );
17
18with 'SQL::Translator::Generator::Role::Quote';
19
20sub name_sep { q(.) }
21
221;