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